Skip to content

Commit

Permalink
Fix wrapped serial functional test
Browse files Browse the repository at this point in the history
The error message had changed
  • Loading branch information
Fuzzbawls committed Mar 23, 2019
1 parent c503cd9 commit 7491d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/zerocoin_wrapped_serials.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run_test(self):
tx = self.node.spendrawzerocoin(serial, randomness, DENOM_TO_USE, privkey)
except JSONRPCException as e:
exc_msg = str(e)
if exc_msg == "The new spend coin transaction did not verify (-4)":
if exc_msg == "CoinSpend: failed check (-4)":
self.log.info("GOOD: Transaction did not verify")
else:
raise e
Expand Down

0 comments on commit 7491d6c

Please sign in to comment.