mirror of
https://github.com/LBRYFoundation/lbry-database-java.git
synced 2025-08-23 09:27:22 +00:00
20 lines
No EOL
471 B
Java
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 +
|
|
'}';
|
|
}
|
|
|
|
} |