concurrent_read_reqeusts typo fix. (#335)

This commit is contained in:
Savinda Senevirathne
2021-07-22 19:40:29 +05:30
committed by GitHub
parent cdf3a73c7d
commit 866a617989
6 changed files with 9 additions and 9 deletions

View File

@@ -146,7 +146,7 @@ namespace usr
if (msg_type == msg::usrmsg::MSGTYPE_CONTRACT_READ_REQUEST)
{
// Ignore the request if contract execution is disabled or read requests disallowed.
if (!conf::cfg.contract.execute || conf::cfg.user.concurrent_read_reqeuests == 0)
if (!conf::cfg.contract.execute || conf::cfg.user.concurrent_read_requests == 0)
return 0;
std::string content;