From e710387ca95f7fa8ba1aa6f5698843391b87c772 Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Thu, 15 Feb 2018 23:26:35 -0800 Subject: [PATCH] test: Fix bip68 sequence test to reflect updated rpc error message The message changed in #12356 --- test/functional/feature_bip68_sequence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):