Skip to content

Commit

Permalink
fix error message for net_version check
Browse files Browse the repository at this point in the history
  • Loading branch information
msizov committed Aug 2, 2024
1 parent 642e385 commit 5d0d503
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ class ChainIdValidator(
if (!isChainValid) {
val actualChain = Global.chainByChainId(it.t1).chainName
log.warn(
"${chain.chainName} is specified for upstream ${upstream.getId()} (${chain.chainId.lowercase()} $netver) " +
"but actually it is $actualChain with chainId ${it.t1} and net_version ${it.t2}",
"${chain.chainName} is specified for upstream ${upstream.getId()} (chainId ${chain.chainId.lowercase()}, net_version ${chain.netVersion}) " +
"but actually it is $actualChain with chainId ${it.t1} and net_version $netver",
)
}

Expand Down

0 comments on commit 5d0d503

Please sign in to comment.