Skip to content

Commit

Permalink
Fixes for gcc 10
Browse files Browse the repository at this point in the history
  • Loading branch information
seelabs authored and manojsdoshi committed May 27, 2020
1 parent 68494a3 commit 421417a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/rpc/handlers/AccountTx.cpp
Expand Up @@ -177,7 +177,7 @@ parseLedgerArgs(Json::Value const& params)
{
LedgerSpecifier ledger;
if (params[jss::ledger_index].isNumeric())
ledger = params[jss::ledger_index].asInt();
ledger = params[jss::ledger_index].asUInt();
else
{
std::string ledgerStr = params[jss::ledger_index].asString();
Expand Down

0 comments on commit 421417a

Please sign in to comment.