Skip to content

Commit

Permalink
lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Sep 18, 2024
1 parent 6db0aa2 commit 1ffca91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/commands/computeCheckpointableValue.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ func ComputeCheckpointableValueCommand(args TComputeCheckpointableValueCommandAr

totalRewards := map[string]*big.Float{
"pending_execution_wei": new(big.Float).SetInt(pendingExecutionWei),
"pending_beacon_wei": new(big.Float).SetInt(pendingBeaconWei),

"pending_execution_eth": core.GweiToEther(core.WeiToGwei(pendingExecutionWei)),
"pending_beacon_eth": core.GweiToEther(core.WeiToGwei(pendingBeaconWei)),

"pending_beacon_wei": new(big.Float).SetInt(pendingBeaconWei),
"pending_beacon_eth": core.GweiToEther(core.WeiToGwei(pendingBeaconWei)),

"total_pending_shares_wei": new(big.Float).SetInt(totalPendingRewards),
"total_pending_shares_gwei": core.WeiToGwei(totalPendingRewards),
Expand Down

0 comments on commit 1ffca91

Please sign in to comment.