aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/replace-by-fee.py
diff options
context:
space:
mode:
authorTomo Ueda <[email protected]>2021-09-02 12:56:56 -0700
committerTomo Ueda <[email protected]>2021-09-02 12:56:56 -0700
commit42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622 (patch)
tree5ee83fd64a21f643e730182ed5dbe3eafab9f15a /qa/rpc-tests/replace-by-fee.py
parentreally s/Doge/Dis/g this time (diff)
downloaddiscoin-42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622.tar.xz
discoin-42f6cc56c2909e9b04f4c549f9ebb1e5e0d78622.zip
s/DOGE/DIS/g
Diffstat (limited to 'qa/rpc-tests/replace-by-fee.py')
-rwxr-xr-xqa/rpc-tests/replace-by-fee.py6
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]))]