Skip to content

Commit

Permalink
gwei conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Sep 19, 2024
1 parent 0c7d1ee commit c6b04c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/core/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func GetStatus(ctx context.Context, eigenpodAddress string, eth *ethclient.Clien
if checkpointTimestamp != 0 {
// Change in the pod's native ETH balance (already calculated for us when the checkpoint was started)
fmt.Printf("pod had a checkpoint\n")
nativeETHDeltaWei = new(big.Int).SetUint64(checkpoint.PodBalanceGwei)
nativeETHDeltaWei = IGweiToWei(new(big.Int).SetUint64(checkpoint.PodBalanceGwei))

// Remove already-computed delta from an in-progress checkpoint
sumRestakedBalancesWei = new(big.Int).Sub(
Expand Down

0 comments on commit c6b04c0

Please sign in to comment.