This commit is contained in:
Dmitriy Ryajov 2024-01-15 09:30:57 -06:00
parent 2048958d2f
commit 87754dd298
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
2 changed files with 1 additions and 2 deletions

View File

@ -65,7 +65,6 @@ proc bootstrapInteractions(
config = s.config
repo = s.repoStore
if not config.persistence and not config.validator:
if config.ethAccount.isSome or config.ethPrivateKey.isSome:
warn "Ethereum account was set, but neither persistence nor validator is enabled"

View File

@ -91,7 +91,7 @@ proc start*(self: BlockMaintainer) =
try:
await self.runBlockCheck()
except CatchableError as exc:
error "Unexpected exception in BlockMaintainer.onTimer(): ", msg=exc.msg
error "Exception in BlockMaintainer.onTimer(): ", msg=exc.msg
self.timer.start(onTimer, self.interval)