mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
Transaction: make inputs
/outputs
use List
interface
There is no need for the to be declared as `ArrayList`.
This commit is contained in:
parent
126ccbfd98
commit
c64eb6c87e
1 changed files with 2 additions and 2 deletions
|
@ -160,8 +160,8 @@ public class Transaction extends BaseMessage {
|
|||
|
||||
// These are bitcoin serialized.
|
||||
private long version;
|
||||
private ArrayList<TransactionInput> inputs;
|
||||
private ArrayList<TransactionOutput> outputs;
|
||||
private List<TransactionInput> inputs;
|
||||
private List<TransactionOutput> outputs;
|
||||
|
||||
private volatile LockTime vLockTime;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue