From cb480af0135596c14c2906d769e2b44901b030df Mon Sep 17 00:00:00 2001 From: PastaPastaPasta Date: Tue, 13 Aug 2019 11:27:56 -0500 Subject: [PATCH] Dashify Co-Authored-By: UdjinM6 --- src/dash-cli.cpp | 2 +- test/functional/test_framework/util.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dash-cli.cpp b/src/dash-cli.cpp index 7fd615a60..0f95eeaab 100644 --- a/src/dash-cli.cpp +++ b/src/dash-cli.cpp @@ -352,7 +352,7 @@ int CommandLineRPC(int argc, char *argv[]) strPrint += "error message:\n"+errMsg.get_str(); if (errCode.isNum() && errCode.get_int() == RPC_WALLET_NOT_SPECIFIED) { - strPrint += "\nTry adding \"-rpcwallet=\" option to bitcoin-cli command line."; + strPrint += "\nTry adding \"-rpcwallet=\" option to dash-cli command line."; } } } else { diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index b419257c3..d3732b80a 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -27,10 +27,10 @@ def assert_fee_amount(fee, tx_size, fee_per_kB): """Assert the fee was in range""" target_fee = tx_size * fee_per_kB / 1000 if fee < target_fee: - raise AssertionError("Fee of %s BTC too low! (Should be %s BTC)" % (str(fee), str(target_fee))) + raise AssertionError("Fee of %s DASH too low! (Should be %s DASH)" % (str(fee), str(target_fee))) # allow the wallet's estimation to be at most 2 bytes off if fee > (tx_size + 2) * fee_per_kB / 1000: - raise AssertionError("Fee of %s BTC too high! (Should be %s BTC)" % (str(fee), str(target_fee))) + raise AssertionError("Fee of %s DASH too high! (Should be %s DASH)" % (str(fee), str(target_fee))) def assert_equal(thing1, thing2, *args): if thing1 != thing2 or any(thing1 != arg for arg in args):