From ffcfe76d4f4312b3593ba620461f2603eba8a7dd Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Thu, 14 Jul 2016 17:27:54 -0600 Subject: [PATCH] Change encryptedbucket1 to encryptednote1. --- qa/rpc-tests/zcpour.py | 6 +++--- qa/rpc-tests/zcpourdoublespend.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qa/rpc-tests/zcpour.py b/qa/rpc-tests/zcpour.py index 47bdee5dc..938857b61 100755 --- a/qa/rpc-tests/zcpour.py +++ b/qa/rpc-tests/zcpour.py @@ -26,14 +26,14 @@ class PourTxTest(BitcoinTestFramework): protect_tx = self.nodes[0].createrawtransaction(inputs, {}) pour_result = self.nodes[0].zcrawjoinsplit(protect_tx, {}, {zcaddress:39.9}, 39.9, 0) - receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptedbucket1"]) + receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptednote1"]) assert_equal(receive_result["exists"], False) protect_tx = self.nodes[0].signrawtransaction(pour_result["rawtxn"]) self.nodes[0].sendrawtransaction(protect_tx["hex"]) self.nodes[0].generate(1) - receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptedbucket1"]) + receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptednote1"]) assert_equal(receive_result["exists"], True) pour_tx = self.nodes[0].createrawtransaction([], {}) @@ -43,7 +43,7 @@ class PourTxTest(BitcoinTestFramework): self.nodes[0].generate(1) print "Done!" - receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptedbucket1"]) + receive_result = self.nodes[0].zcrawreceive(zcsecretkey, pour_result["encryptednote1"]) assert_equal(receive_result["exists"], True) if __name__ == '__main__': diff --git a/qa/rpc-tests/zcpourdoublespend.py b/qa/rpc-tests/zcpourdoublespend.py index 2967f2260..a498beeaa 100755 --- a/qa/rpc-tests/zcpourdoublespend.py +++ b/qa/rpc-tests/zcpourdoublespend.py @@ -64,7 +64,7 @@ class PourTxTest(BitcoinTestFramework): self.nodes[0].generate(1) self.nodes[2].sendrawtransaction(signed["hex"]) self.nodes[2].generate(1) - pool[i] = pool[i]["encryptedbucket1"] + pool[i] = pool[i]["encryptednote1"] sync_blocks(self.nodes[0:2]) sync_blocks(self.nodes[2:4])