mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-10 09:20:04 +01:00
Transaction: add back a constructor as deprecated
Problem: At the moment, we don't have a replacement.
This commit is contained in:
parent
7230fbf7e5
commit
0e8a51123b
1 changed files with 6 additions and 0 deletions
|
@ -323,6 +323,12 @@ public class Transaction extends BaseMessage {
|
||||||
vLockTime = LockTime.unset();
|
vLockTime = LockTime.unset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @deprecated use {@link #Transaction()} */
|
||||||
|
@Deprecated
|
||||||
|
public Transaction(NetworkParameters params) {
|
||||||
|
this();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the transaction id as you see them in block explorers. It is used as a reference by transaction inputs
|
* Returns the transaction id as you see them in block explorers. It is used as a reference by transaction inputs
|
||||||
* via outpoints.
|
* via outpoints.
|
||||||
|
|
Loading…
Add table
Reference in a new issue