aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/paytxfee.py
diff options
context:
space:
mode:
Diffstat (limited to 'qa/rpc-tests/paytxfee.py')
-rw-r--r--qa/rpc-tests/paytxfee.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/paytxfee.py b/qa/rpc-tests/paytxfee.py
index b58eb7680..4494bdd58 100644
--- a/qa/rpc-tests/paytxfee.py
+++ b/qa/rpc-tests/paytxfee.py
@@ -25,15 +25,15 @@ class PayTxFeeTest(BitcoinTestFramework):
nodes.append(start_node(0, self.options.tmpdir,
["-debug", '-txindex']))
- # node 1 pays 0.1 DOGE on all txs due to implicit mintxfee = paytxfee
+ # node 1 pays 0.1 DIS on all txs due to implicit mintxfee = paytxfee
nodes.append(start_node(1, self.options.tmpdir,
["-paytxfee=0.1", "-debug"]))
- # node 2 will always pay 1 DOGE on all txs because of explicit mintxfee
+ # node 2 will always pay 1 DIS on all txs because of explicit mintxfee
nodes.append(start_node(2, self.options.tmpdir,
["-mintxfee=1", "-paytxfee=0.1", "-debug"]))
- # node 3 will always pay 0.1 DOGE on all txs despite explicit mintxfee of 0.01
+ # node 3 will always pay 0.1 DIS on all txs despite explicit mintxfee of 0.01
nodes.append(start_node(3, self.options.tmpdir,
["-mintxfee=0.01", "-paytxfee=0.1", "-debug"]))