diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:56:56 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:56:56 -0700 |
| commit | 42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622 (patch) | |
| tree | 5ee83fd64a21f643e730182ed5dbe3eafab9f15a /qa/rpc-tests/wallet.py | |
| parent | really s/Doge/Dis/g this time (diff) | |
| download | discoin-42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622.tar.xz discoin-42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622.zip | |
s/DOGE/DIS/g
Diffstat (limited to 'qa/rpc-tests/wallet.py')
| -rwxr-xr-x | qa/rpc-tests/wallet.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qa/rpc-tests/wallet.py b/qa/rpc-tests/wallet.py index b65dec3e4..c9f937273 100755 --- a/qa/rpc-tests/wallet.py +++ b/qa/rpc-tests/wallet.py @@ -57,7 +57,7 @@ class WalletTest (BitcoinTestFramework): assert_equal(len(self.nodes[1].listunspent()), 1) assert_equal(len(self.nodes[2].listunspent()), 0) - # Send 210.000 DOGE from 0 to 2 using sendtoaddress call. + # Send 210.000 DIS from 0 to 2 using sendtoaddress call. self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 110000) self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 100000) @@ -114,7 +114,7 @@ class WalletTest (BitcoinTestFramework): assert_equal(self.nodes[2].getbalance(), 999994) assert_equal(self.nodes[2].getbalance("from1"), 999994-210000) - # Send 100000 DOGE normal + # Send 100000 DIS normal address = self.nodes[0].getnewaddress("test") fee_per_byte = Decimal('1') / 1000 self.nodes[2].settxfee(fee_per_byte * 1000) @@ -124,7 +124,7 @@ class WalletTest (BitcoinTestFramework): node_2_bal = self.check_fee_amount(self.nodes[2].getbalance(), Decimal('899994'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) assert_equal(self.nodes[0].getbalance(), Decimal('100000')) - # Send 100000 DOGE with subtract fee from amount + # Send 100000 DIS with subtract fee from amount txid = self.nodes[2].sendtoaddress(address, 100000, "", "", True) self.nodes[2].generate(1) self.sync_all() @@ -132,7 +132,7 @@ class WalletTest (BitcoinTestFramework): assert_equal(self.nodes[2].getbalance(), node_2_bal) node_0_bal = self.check_fee_amount(self.nodes[0].getbalance(), Decimal('200000'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) - # Sendmany 100000 DOGE + # Sendmany 100000 DIS txid = self.nodes[2].sendmany('from1', {address: 100000}, 0, "", []) self.nodes[2].generate(1) self.sync_all() |