Skip to content

Commit

Permalink
Merge pull request #2062 from skalenetwork/IS-495-catchup-timeout
Browse files Browse the repository at this point in the history
Is 495 catchup timeout
  • Loading branch information
olehnikolaiev authored Jan 3, 2025
2 parents 20f93f9 + 293fdbe commit eb3e0cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion libethereum/ValidationSchemes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,12 @@ void validateConfigJson( js::mObject const& _obj ) {
{ "archiveMode", { { js::bool_type }, JsonFieldPresence::Optional } },
{ "syncFromCatchup", { { js::bool_type }, JsonFieldPresence::Optional } },
{ "testSignatures", { { js::bool_type }, JsonFieldPresence::Optional } },
{ "wallets", { { js::obj_type }, JsonFieldPresence::Optional } } } );
{ "wallets", { { js::obj_type }, JsonFieldPresence::Optional } },
{ "catchupTimeoutSec", { { js::int_type }, JsonFieldPresence::Optional } },
{ "syncNodeCatchupTimeoutSec", { { js::int_type }, JsonFieldPresence::Optional } },
{ "readJsonHeaderTimeoutSec", { { js::int_type }, JsonFieldPresence::Optional } },
{ "syncNodeReadJsonHeaderTimeoutSec",
{ { js::int_type }, JsonFieldPresence::Optional } } } );

std::string keyShareName = "";
try {
Expand Down

0 comments on commit eb3e0cc

Please sign in to comment.