mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-12-26 01:56:44 +00:00
add default min fee rate
This commit is contained in:
parent
2650dafa66
commit
79eb8b002d
1 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,9 @@ public class Transaction extends ChildMessage {
|
|||
//From: https://github.com/bitcoin/bitcoin/blob/0.19/src/policy/policy.h#L50
|
||||
public static final double DUST_RELAY_TX_FEE = 3d;
|
||||
|
||||
//Default min feerate, defined in sats/vByte
|
||||
public static final double DEFAULT_MIN_RELAY_FEE = 1d;
|
||||
|
||||
private long version;
|
||||
private long locktime;
|
||||
private boolean segwit;
|
||||
|
|
Loading…
Reference in a new issue