diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-11-17 12:54:39 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-03-24 11:17:08 -0400 |
commit | b55555da3e25a47f1e7fced7f09d4f0bf8198624 (patch) | |
tree | 551e618067f55d5de6d4b05623202020ce1f626b /test/functional/test_framework | |
parent | b43aba89e356ff95b706e80d4802f60fc46a569a (diff) |
rpc: Add testmempoolaccept
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/messages.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py index ee573e01cc..ca2e425bd6 100755 --- a/test/functional/test_framework/messages.py +++ b/test/functional/test_framework/messages.py @@ -34,7 +34,9 @@ MY_RELAY = 1 # from version 70001 onwards, fRelay should be appended to version MAX_INV_SZ = 50000 MAX_BLOCK_BASE_SIZE = 1000000 -COIN = 100000000 # 1 btc in satoshis +COIN = 100000000 # 1 btc in satoshis + +BIP125_SEQUENCE_NUMBER = 0xfffffffd # Sequence number that is BIP 125 opt-in and BIP 68-opt-out NODE_NETWORK = (1 << 0) # NODE_GETUTXO = (1 << 1) @@ -470,6 +472,7 @@ class CTransaction(): def rehash(self): self.sha256 = None self.calc_sha256() + return self.hash # We will only cache the serialization without witness in # self.sha256 and self.hash -- those are expected to be the txid. |