aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGregory Sanders <gsanders87@gmail.com>2018-11-07 11:24:34 -0500
committerfanquake <fanquake@gmail.com>2018-12-09 22:32:45 +0800
commitae1b6756c96f78985e88fa5b0c68ccad90f5e259 (patch)
treece7f269cd36cc48dee7b00272d86dc0203af1ecc /test
parentef70f9b52b851c7997a9f1a0834714e3eebc1fd8 (diff)
downloadbitcoin-ae1b6756c96f78985e88fa5b0c68ccad90f5e259.tar.xz
importmulti: Don't add internal addresses to address book
Github-Pull: #14679 Rebased-From: 7afddfa8cefd01249ad59cf2370e7cec90b34f6f
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/wallet_importmulti.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/wallet_importmulti.py b/test/functional/wallet_importmulti.py
index 3dd296d603..e6dd8b6ddb 100755
--- a/test/functional/wallet_importmulti.py
+++ b/test/functional/wallet_importmulti.py
@@ -40,7 +40,7 @@ class ImportMultiTest (BitcoinTestFramework):
# RPC importmulti -----------------------------------------------
- # Bitcoin Address
+ # Bitcoin Address (implicit non-internal)
self.log.info("Should import an address")
address = self.nodes[0].getaddressinfo(self.nodes[0].getnewaddress())
result = self.nodes[1].importmulti([{
@@ -98,7 +98,7 @@ class ImportMultiTest (BitcoinTestFramework):
assert_equal('timestamp' in address_assert, False)
- # Address + Public key + !Internal
+ # Address + Public key + !Internal(explicit)
self.log.info("Should import an address with public key")
address = self.nodes[0].getaddressinfo(self.nodes[0].getnewaddress())
result = self.nodes[1].importmulti([{
@@ -106,7 +106,8 @@ class ImportMultiTest (BitcoinTestFramework):
"address": address['address']
},
"timestamp": "now",
- "pubkeys": [ address['pubkey'] ]
+ "pubkeys": [ address['pubkey'] ],
+ "internal": False
}])
assert_equal(result[0]['success'], True)
address_assert = self.nodes[1].getaddressinfo(address['address'])