Updated on 2026-08-14

This commit is contained in:
Tangem 2019-04-08 15:05:55 +03:00
parent 092eb2dd68
commit 250ceba99f
78 changed files with 229 additions and 247 deletions

View file

@ -0,0 +1,26 @@
package com.tangem.wallet;
/**
* Created by Ilia on 29.09.2017.
*/
@SuppressWarnings("WeakerAccess")
public class UnspentOutputInfo {
public final byte[] txHash;
public final Transaction.Script script;
public final long value;
public final int outputIndex;
public final long confirmations;
public String txHashForBuild;
public byte[] scriptForBuild;
public UnspentOutputInfo(byte[] txHash, Transaction.Script script, long value, int outputIndex, long confirmations, String hashForBuild, byte[] sign) {
this.txHash = txHash;
this.script = script;
this.value = value;
this.outputIndex = outputIndex;
this.confirmations = confirmations;
this.txHashForBuild = hashForBuild;
this.scriptForBuild = sign;
}
}