Skip to content

Commit 7491d6c

Browse files
committed
Fix wrapped serial functional test
The error message had changed
1 parent c503cd9 commit 7491d6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/zerocoin_wrapped_serials.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def run_test(self):
9191
tx = self.node.spendrawzerocoin(serial, randomness, DENOM_TO_USE, privkey)
9292
except JSONRPCException as e:
9393
exc_msg = str(e)
94-
if exc_msg == "The new spend coin transaction did not verify (-4)":
94+
if exc_msg == "CoinSpend: failed check (-4)":
9595
self.log.info("GOOD: Transaction did not verify")
9696
else:
9797
raise e

0 commit comments

Comments
 (0)