mirror of
https://github.com/LBRYFoundation/lbry-database-java.git
synced 2025-08-23 09:27:22 +00:00
20 lines
No EOL
441 B
Java
20 lines
No EOL
441 B
Java
package com.lbry.database.keys;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class HashXUTXOKey implements KeyInterface {
|
|
|
|
public byte[] short_tx_hash;
|
|
public int tx_num;
|
|
public short nout;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "HashXUTXOKey{" +
|
|
"short_tx_hash=" + Arrays.toString(short_tx_hash) +
|
|
", tx_num=" + tx_num +
|
|
", nout=" + nout +
|
|
'}';
|
|
}
|
|
|
|
} |