mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
[qa] mininode: Add and use CONSTs
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
from test_framework.test_framework import BitcoinTestFramework
|
||||
from test_framework.util import *
|
||||
from test_framework.mininode import CTransaction
|
||||
from test_framework.mininode import CTransaction, COIN
|
||||
import cStringIO
|
||||
import binascii
|
||||
|
||||
@@ -192,7 +192,7 @@ class ListTransactionsTest(BitcoinTestFramework):
|
||||
|
||||
# Replace tx3, and check that tx4 becomes unknown
|
||||
tx3_b = tx3_modified
|
||||
tx3_b.vout[0].nValue -= 0.004*100000000 # bump the fee
|
||||
tx3_b.vout[0].nValue -= 0.004 * COIN # bump the fee
|
||||
tx3_b = binascii.hexlify(tx3_b.serialize()).decode('utf-8')
|
||||
tx3_b_signed = self.nodes[0].signrawtransaction(tx3_b)['hex']
|
||||
txid_3b = self.nodes[0].sendrawtransaction(tx3_b_signed, True)
|
||||
|
||||
Reference in New Issue
Block a user