chore: Enable most modernize checks (#7664)

This commit is contained in:
Ayaz Salikhov
2026-07-06 13:19:52 +01:00
committed by GitHub
parent c92285f10d
commit d07d2aba2e
46 changed files with 125 additions and 223 deletions

View File

@@ -2238,7 +2238,7 @@ public:
{
json::Value req;
json::Reader().parse("{ \"fee_mult_max\" : 1, \"tx_json\" : { } } ", req);
json::Reader().parse(R"({ "fee_mult_max" : 1, "tx_json" : { } } )", req);
json::Value const result = checkFee(
req,
Role::ADMIN,
@@ -2275,7 +2275,7 @@ public:
{
json::Value req;
json::Reader().parse("{ \"fee_mult_max\" : 0, \"tx_json\" : { } } ", req);
json::Reader().parse(R"({ "fee_mult_max" : 0, "tx_json" : { } } )", req);
json::Value const result = checkFee(
req,
Role::ADMIN,