mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 22:36:01 +00:00
use decimal representations of engine and builder bid values (#5879)
This commit is contained in:
parent
134774e00d
commit
8240c1bf34
@ -346,7 +346,7 @@ proc openStream(node: Eth2Node,
|
||||
try:
|
||||
ok await dial(node.switch, peer.peerId, protocolId)
|
||||
except LPError as exc:
|
||||
debug "Dialling failed", exc = exc.msg
|
||||
debug "Dialing failed", exc = exc.msg
|
||||
neterr BrokenConnection
|
||||
except CancelledError as exc:
|
||||
raise exc
|
||||
|
@ -1115,8 +1115,9 @@ proc proposeBlockAux(
|
||||
localBlockValueBoost,
|
||||
useBuilderBlock,
|
||||
builderBlockValue =
|
||||
collectedBids.builderBid.value().blockValue,
|
||||
engineBlockValue = collectedBids.engineBid.value().blockValue
|
||||
toString(collectedBids.builderBid.value().blockValue, 10),
|
||||
engineBlockValue =
|
||||
toString(collectedBids.engineBid.value().blockValue, 10)
|
||||
elif payloadBuilderClient.isNil:
|
||||
discard # builder API not configured for this block
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user