mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
make MAX_BIP125_RBF_SEQUENCE constexpr
This commit is contained in:
parent
3cf46f6055
commit
c6abeb76fb
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
class CTransaction;
|
||||
|
||||
static const uint32_t MAX_BIP125_RBF_SEQUENCE = 0xfffffffd;
|
||||
static constexpr uint32_t MAX_BIP125_RBF_SEQUENCE{0xfffffffd};
|
||||
|
||||
/** Check whether the sequence numbers on this transaction are signaling opt-in to replace-by-fee,
|
||||
* according to BIP 125. Allow opt-out of transaction replacement by setting nSequence >
|
||||
|
|
Loading…
Add table
Reference in a new issue