File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -843,7 +843,6 @@ UniValue mnfinalbudget(const JSONRPCRequest& request)
843843 const uint256& nHash = finalizedBudget->GetHash ();
844844 UniValue bObj (UniValue::VOBJ);
845845 bObj.pushKV (" FeeTX" , finalizedBudget->GetFeeTXHash ().ToString ());
846- bObj.pushKV (" Hash" , nHash.ToString ());
847846 bObj.pushKV (" BlockStart" , (int64_t )finalizedBudget->GetBlockStart ());
848847 bObj.pushKV (" BlockEnd" , (int64_t )finalizedBudget->GetBlockEnd ());
849848 bObj.pushKV (" Proposals" , finalizedBudget->GetProposalsStr ());
@@ -855,7 +854,8 @@ UniValue mnfinalbudget(const JSONRPCRequest& request)
855854 if (!fValid )
856855 bObj.pushKV (" IsInvalidReason" , finalizedBudget->IsInvalidReason ());
857856
858- resultObj.pushKV (finalizedBudget->GetName (), bObj);
857+ std::string strName = strprintf (" %s (%s)" , finalizedBudget->GetName (), nHash.ToString ());
858+ resultObj.pushKV (strName, bObj);
859859 }
860860
861861 return resultObj;
You can’t perform that action at this time.
0 commit comments