Skip to content

Commit

Permalink
Merge pull request #2711 from Pythonix/change-rpc-cap
Browse files Browse the repository at this point in the history
rpc: Change capitalization, remove whitespace of rpc keys
  • Loading branch information
jamescowens committed Nov 8, 2023
2 parents 7557241 + 0a29724 commit def3f9c
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 @@ -2957,11 +2957,11 @@ UniValue SuperblockReport(int lookback, bool displaycontract, std::string cpid)

if (cpid_parsed)
{
c.pushKV("Magnitude", superblock.m_cpids.MagnitudeOf(*cpid_parsed).Floating());
c.pushKV("magnitude", superblock.m_cpids.MagnitudeOf(*cpid_parsed).Floating());
}

if (displaycontract)
c.pushKV("Contract Contents", SuperblockToJson(superblock));
c.pushKV("contract_contents", SuperblockToJson(superblock));

results.push_back(c);

Expand Down

0 comments on commit def3f9c

Please sign in to comment.