Skip to content

Commit 10a06bd

Browse files
authored
Merge pull request #2501 from jamescowens/mrc
rpc: Change tail_fee and head_fee to display in GRC rather than Halfords in createmrcrequest
2 parents b4d2290 + a94c7be commit 10a06bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rpc/blockchain.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2577,8 +2577,8 @@ UniValue createmrcrequest(const UniValue& params, const bool fHelp) {
25772577
// Sadly, humans start indexing by 1.
25782578
resp.pushKV("pos", pos + 1);
25792579
resp.pushKV("limit", limit);
2580-
resp.pushKV("tail_fee", tail_fee);
2581-
resp.pushKV("head_fee", head_fee);
2580+
resp.pushKV("tail_fee", ValueFromAmount(tail_fee));
2581+
resp.pushKV("head_fee", ValueFromAmount(head_fee));
25822582

25832583
if (!dry_run) {
25842584
LOCK(pwalletMain->cs_wallet);

0 commit comments

Comments
 (0)