Rename outputIndex

This commit is contained in:
Manfred Karrer 2018-09-28 19:49:36 -05:00
parent 54fc96a5d7
commit 3de2746834
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -27,7 +27,7 @@ import javax.annotation.Nullable;
class JsonTxOutput {
private final String txVersion = Version.BSQ_TX_VERSION;
private final String txId;
private final int outputIndex;
private final int index;
private final long bsqAmount;
private final long btcAmount;
private final int height;
@ -48,6 +48,6 @@ class JsonTxOutput {
private final int lockTime; // new
String getId() {
return txId + ":" + outputIndex;
return txId + ":" + index;
}
}