From d63390197d524653555ef5cf3a01792f63a6010f Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 1 Jan 2019 23:53:39 -1100 Subject: [PATCH] Fix comment --- src/rpc/crosschain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/crosschain.cpp b/src/rpc/crosschain.cpp index d136074d0..318acb666 100644 --- a/src/rpc/crosschain.cpp +++ b/src/rpc/crosschain.cpp @@ -283,7 +283,7 @@ UniValue selfimport(const UniValue& params, bool fHelp) throw runtime_error("selfimport only works on -ac_import chains"); if (fHelp || params.size() < 3 || params.size() > 5 ) throw runtime_error("selfimport rawtx txid burnamount [rawproof source]\n\n" - "creates signed selfimport transaction from txid"); + "creates signed selfimport transaction"); rawtx = ParseHex(params[0].get_str().c_str()); txid = Parseuint256((char *)params[1].get_str().c_str()); // allow for txid != hash(rawtx) burnAmount = atof(params[2].get_str().c_str()) * COIN + 0.00000000499999;