diff options
Diffstat (limited to 'qa/rpc-tests/replace-by-fee.py')
| -rwxr-xr-x | qa/rpc-tests/replace-by-fee.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/replace-by-fee.py b/qa/rpc-tests/replace-by-fee.py index 475baa255..7a6e01f02 100755 --- a/qa/rpc-tests/replace-by-fee.py +++ b/qa/rpc-tests/replace-by-fee.py @@ -139,7 +139,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): else: assert(False) - # Extra 5 DOGE fee + # Extra 5 DIS fee tx1b = CTransaction() tx1b.vin = [CTxIn(tx0_outpoint, nSequence=0)] tx1b.vout = [CTxOut(int(6*COIN), CScript([b'b']))] @@ -173,7 +173,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): prevout = COutPoint(int(txid, 16), 0) # Whether the double-spend is allowed is evaluated by including all - # child fees - 400 DOGE - so this attempt is rejected. + # child fees - 400 DIS - so this attempt is rejected. dbl_tx = CTransaction() dbl_tx.vin = [CTxIn(tx0_outpoint, nSequence=0)] dbl_tx.vout = [CTxOut(initial_nValue - 300*COIN, CScript([1]))] @@ -251,7 +251,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): else: assert(False) - # 1000 DOGE fee is enough + # 1000 DIS fee is enough dbl_tx = CTransaction() dbl_tx.vin = [CTxIn(tx0_outpoint, nSequence=0)] dbl_tx.vout = [CTxOut(initial_nValue - fee*n - 1000*COIN, CScript([1]))] |