mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-24 07:28:02 +01:00
test: remove unused totalOut
code
In `wallet_fundrawtransaction`, `totalOut` is used in some functions to check if the change is correct. In other ones, it has been created but never used.
This commit is contained in:
parent
0fc3deee9a
commit
108c6255bc
1 changed files with 0 additions and 9 deletions
|
@ -206,9 +206,6 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
|
|
||||||
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
||||||
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
||||||
totalOut = 0
|
|
||||||
for out in dec_tx['vout']:
|
|
||||||
totalOut += out['value']
|
|
||||||
|
|
||||||
assert len(dec_tx['vin']) > 0
|
assert len(dec_tx['vin']) > 0
|
||||||
assert_equal(dec_tx['vin'][0]['scriptSig']['hex'], '')
|
assert_equal(dec_tx['vin'][0]['scriptSig']['hex'], '')
|
||||||
|
@ -331,10 +328,8 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
||||||
|
|
||||||
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
||||||
totalOut = 0
|
|
||||||
matchingOuts = 0
|
matchingOuts = 0
|
||||||
for i, out in enumerate(dec_tx['vout']):
|
for i, out in enumerate(dec_tx['vout']):
|
||||||
totalOut += out['value']
|
|
||||||
if out['scriptPubKey']['address'] in outputs:
|
if out['scriptPubKey']['address'] in outputs:
|
||||||
matchingOuts+=1
|
matchingOuts+=1
|
||||||
else:
|
else:
|
||||||
|
@ -361,10 +356,8 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
assert_raises_rpc_error(-4, ERR_NOT_ENOUGH_PRESET_INPUTS, self.nodes[2].fundrawtransaction, rawtx, add_inputs=False)
|
assert_raises_rpc_error(-4, ERR_NOT_ENOUGH_PRESET_INPUTS, self.nodes[2].fundrawtransaction, rawtx, add_inputs=False)
|
||||||
rawtxfund = self.nodes[2].fundrawtransaction(rawtx, add_inputs=True)
|
rawtxfund = self.nodes[2].fundrawtransaction(rawtx, add_inputs=True)
|
||||||
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
||||||
totalOut = 0
|
|
||||||
matchingOuts = 0
|
matchingOuts = 0
|
||||||
for out in dec_tx['vout']:
|
for out in dec_tx['vout']:
|
||||||
totalOut += out['value']
|
|
||||||
if out['scriptPubKey']['address'] in outputs:
|
if out['scriptPubKey']['address'] in outputs:
|
||||||
matchingOuts+=1
|
matchingOuts+=1
|
||||||
|
|
||||||
|
@ -395,10 +388,8 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
rawtxfund = self.nodes[2].fundrawtransaction(rawtx, add_inputs=True)
|
rawtxfund = self.nodes[2].fundrawtransaction(rawtx, add_inputs=True)
|
||||||
|
|
||||||
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
||||||
totalOut = 0
|
|
||||||
matchingOuts = 0
|
matchingOuts = 0
|
||||||
for out in dec_tx['vout']:
|
for out in dec_tx['vout']:
|
||||||
totalOut += out['value']
|
|
||||||
if out['scriptPubKey']['address'] in outputs:
|
if out['scriptPubKey']['address'] in outputs:
|
||||||
matchingOuts+=1
|
matchingOuts+=1
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue