mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-03 04:01:43 +02:00
test: remove getaddressinfo label tests
This commit is contained in:
@ -36,7 +36,6 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
address,
|
||||
iswatchonly=True,
|
||||
ismine=False,
|
||||
label=label,
|
||||
labels=[label])
|
||||
|
||||
self.log.info(
|
||||
@ -45,7 +44,7 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
)
|
||||
priv_key = self.nodes[0].dumpprivkey(address)
|
||||
self.nodes[1].importprivkey(priv_key)
|
||||
test_address(self.nodes[1], address, label=label, labels=[label])
|
||||
test_address(self.nodes[1], address, labels=[label])
|
||||
|
||||
self.log.info(
|
||||
"Test importaddress without label and importprivkey with label."
|
||||
@ -57,7 +56,6 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
address2,
|
||||
iswatchonly=True,
|
||||
ismine=False,
|
||||
label="",
|
||||
labels=[""])
|
||||
|
||||
self.log.info(
|
||||
@ -68,7 +66,7 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
label2 = "Test Label 2"
|
||||
self.nodes[1].importprivkey(priv_key2, label2)
|
||||
|
||||
test_address(self.nodes[1], address2, label=label2, labels=[label2])
|
||||
test_address(self.nodes[1], address2, labels=[label2])
|
||||
|
||||
self.log.info("Test importaddress with label and importprivkey with label.")
|
||||
self.log.info("Import a watch-only address with a label.")
|
||||
@ -79,7 +77,6 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
address3,
|
||||
iswatchonly=True,
|
||||
ismine=False,
|
||||
label=label3_addr,
|
||||
labels=[label3_addr])
|
||||
|
||||
self.log.info(
|
||||
@ -90,7 +87,7 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
label3_priv = "Test Label 3 for importprivkey"
|
||||
self.nodes[1].importprivkey(priv_key3, label3_priv)
|
||||
|
||||
test_address(self.nodes[1], address3, label=label3_priv, labels=[label3_priv])
|
||||
test_address(self.nodes[1], address3, labels=[label3_priv])
|
||||
|
||||
self.log.info(
|
||||
"Test importprivkey won't label new dests with the same "
|
||||
@ -104,7 +101,6 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
address4,
|
||||
iswatchonly=True,
|
||||
ismine=False,
|
||||
label=label4_addr,
|
||||
labels=[label4_addr],
|
||||
embedded=None)
|
||||
|
||||
@ -118,9 +114,9 @@ class ImportWithLabel(BitcoinTestFramework):
|
||||
self.nodes[1].importprivkey(priv_key4)
|
||||
embedded_addr = self.nodes[1].getaddressinfo(address4)['embedded']['address']
|
||||
|
||||
test_address(self.nodes[1], embedded_addr, label="", labels=[""])
|
||||
test_address(self.nodes[1], embedded_addr, labels=[""])
|
||||
|
||||
test_address(self.nodes[1], address4, label=label4_addr, labels=[label4_addr])
|
||||
test_address(self.nodes[1], address4, labels=[label4_addr])
|
||||
|
||||
self.stop_nodes()
|
||||
|
||||
|
Reference in New Issue
Block a user