Fix index for iLimit in RPCCall.cpp

This commit is contained in:
Mayukha Vadari
2025-11-17 16:11:35 +05:30
committed by GitHub
parent 13a12c6402
commit 17e4d38dde

View File

@@ -332,7 +332,7 @@ private:
if (jvParams.size() >= 5)
{
int iLimit = jvParams[5u].asInt();
int iLimit = jvParams[4u].asInt();
if (iLimit > 0)
jvRequest[jss::limit] = iLimit;