lbry-database-java/src/main/java/com/lbry/database/keys/PendingActivationKey.java
Ben van Hartingsveldt 770b6c8cf0
Add classes
2024-09-11 21:15:18 +02:00

20 lines
No EOL
471 B
Java

package com.lbry.database.keys;
public class PendingActivationKey implements KeyInterface {
public int height;
public byte txo_type;
public int tx_num;
public short position;
@Override
public String toString() {
return "PendingActivationKey{" +
"height=" + height +
", txo_type=" + txo_type +
", tx_num=" + tx_num +
", position=" + position +
'}';
}
}