diff options
| author | MarcoFalke <[email protected]> | 2018-02-16 16:20:21 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-02-16 16:20:23 -0500 |
| commit | 23481fa50301201ef5a60675ef899aa6ce94ca03 (patch) | |
| tree | 8c6e0652b161642a042ede1802114e30ce29668d | |
| parent | Merge #12464: Revert "[tests] bind functional test nodes to 127.0.0.1" (diff) | |
| parent | test: Fix bip68 sequence test to reflect updated rpc error message (diff) | |
| download | discoin-23481fa50301201ef5a60675ef899aa6ce94ca03.tar.xz discoin-23481fa50301201ef5a60675ef899aa6ce94ca03.zip | |
Merge #12455: Fix bip68 sequence test to reflect updated rpc error message
e710387ca9 test: Fix bip68 sequence test to reflect updated rpc error message (Ben Woosley)
Pull request description:
The message changed in #12356, but this test is in the extended test suite, so it didn't fail on CI.
Tree-SHA512: ce800e2636ab7bbba7876aa533e1684e75c37a7d2a119f9c4602fd89ac9215e2e28710a1f27feb642b6737ed858da049ebc52fdd476ff4637e3ac3bb1d8399ce
| -rwxr-xr-x | test/functional/feature_bip68_sequence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_bip68_sequence.py b/test/functional/feature_bip68_sequence.py index 94b13653b..be01a1ca5 100755 --- a/test/functional/feature_bip68_sequence.py +++ b/test/functional/feature_bip68_sequence.py @@ -14,7 +14,7 @@ SEQUENCE_LOCKTIME_GRANULARITY = 9 # this is a bit-shift SEQUENCE_LOCKTIME_MASK = 0x0000ffff # RPC error for non-BIP68 final transactions -NOT_FINAL_ERROR = "64: non-BIP68-final" +NOT_FINAL_ERROR = "non-BIP68-final (code 64)" class BIP68Test(BitcoinTestFramework): def set_test_params(self): |