Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
arnetheduck committed Dec 11, 2024
1 parent 22e4a22 commit 92f9d78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon_chain/nimbus_beacon_node.nim
Original file line number Diff line number Diff line change
Expand Up @@ -698,12 +698,12 @@ proc init*(T: type BeaconNode,
Taskpool.new(numThreads = min(countProcessors(), 16))
else:
Taskpool.new(numThreads = config.numThreads)

info "Threadpool started", numThreads = taskpool.numThreads
except CatchableError as e:
fatal "Cannot start taskpool", err = e.msg
quit 1

info "Threadpool started", numThreads = taskpool.numThreads

if metadata.genesis.kind == BakedIn:
if config.genesisState.isSome:
warn "The --genesis-state option has no effect on networks with built-in genesis state"
Expand Down

0 comments on commit 92f9d78

Please sign in to comment.