Skip to content

Commit

Permalink
Merge pull request #2501 from jamescowens/mrc
Browse files Browse the repository at this point in the history
rpc: Change tail_fee and head_fee to display in GRC rather than Halfords in createmrcrequest
  • Loading branch information
jamescowens authored Apr 25, 2022
2 parents b4d2290 + a94c7be commit 10a06bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpc/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2577,8 +2577,8 @@ UniValue createmrcrequest(const UniValue& params, const bool fHelp) {
// Sadly, humans start indexing by 1.
resp.pushKV("pos", pos + 1);
resp.pushKV("limit", limit);
resp.pushKV("tail_fee", tail_fee);
resp.pushKV("head_fee", head_fee);
resp.pushKV("tail_fee", ValueFromAmount(tail_fee));
resp.pushKV("head_fee", ValueFromAmount(head_fee));

if (!dry_run) {
LOCK(pwalletMain->cs_wallet);
Expand Down

0 comments on commit 10a06bd

Please sign in to comment.