test: Fix bip68 sequence test to reflect updated rpc error message

The message changed in #12356
This commit is contained in:
Ben Woosley 2018-02-15 23:26:35 -08:00
parent 4a62ddd018
commit e710387ca9
No known key found for this signature in database
GPG Key ID: 6EE5F3785F78B345
1 changed files with 1 additions and 1 deletions

View File

@ -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):