diff options
author | MacroFake <falke.marco@gmail.com> | 2022-10-07 15:05:34 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-10-07 15:04:28 +0200 |
commit | fa08663344eb4cea335804d149b46ff4ff081b1c (patch) | |
tree | 058993aa021832267ee1bdf503d4bfacf5407d12 /test/functional/rpc_scantxoutset.py | |
parent | 73b61717a977fc9d23f1bae3f8620641a9dee1f3 (diff) |
rpc: Return coinbase flag in scantxoutset
Diffstat (limited to 'test/functional/rpc_scantxoutset.py')
-rwxr-xr-x | test/functional/rpc_scantxoutset.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/rpc_scantxoutset.py b/test/functional/rpc_scantxoutset.py index acb6d3ea4a..6eb5b493b9 100755 --- a/test/functional/rpc_scantxoutset.py +++ b/test/functional/rpc_scantxoutset.py @@ -33,6 +33,9 @@ class ScantxoutsetTest(BitcoinTestFramework): self.wallet = MiniWallet(self.nodes[0]) self.wallet.rescan_utxos() + self.log.info("Test if we find coinbase outputs.") + assert_equal(sum(u["coinbase"] for u in self.nodes[0].scantxoutset("start", [self.wallet.get_descriptor()])["unspents"]), 49) + self.log.info("Create UTXOs...") pubk1, spk_P2SH_SEGWIT, addr_P2SH_SEGWIT = getnewdestination("p2sh-segwit") pubk2, spk_LEGACY, addr_LEGACY = getnewdestination("legacy") |