From 7491d6caf7ff8236ddf525e91f523655faca671c Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Fri, 22 Mar 2019 17:20:32 -0700 Subject: [PATCH] Fix wrapped serial functional test The error message had changed --- test/functional/zerocoin_wrapped_serials.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 test/functional/zerocoin_wrapped_serials.py diff --git a/test/functional/zerocoin_wrapped_serials.py b/test/functional/zerocoin_wrapped_serials.py old mode 100644 new mode 100755 index 14b091cf44fc0..a84e3cee95cba --- a/test/functional/zerocoin_wrapped_serials.py +++ b/test/functional/zerocoin_wrapped_serials.py @@ -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