Skip to content

Commit

Permalink
remove extra print
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Sep 19, 2024
1 parent 1329855 commit 8d05a66
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cli/commands/computeCheckpointableValue.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ func ComputeCheckpointableValueCommand(args TComputeCheckpointableValueCommandAr
// podBalanceGwei = address(pod).balanceGwei - pod.withdrawableRestakedExecutionLayerGwei
// and
// checkpoint.balanceDeltasGwei = sumBeaconBalancesGwei - sumRestakedBalancesGwei

multicallAbiRef, err := abi.JSON(strings.NewReader(multicallAbi))
core.PanicOnError("failed to load multicall abi", err)

Expand Down Expand Up @@ -382,8 +381,6 @@ func ComputeCheckpointableValueCommand(args TComputeCheckpointableValueCommandAr

totalPendingRewards := big.NewInt(0).Add(pendingExecutionWei, pendingBeaconWei)

fmt.Printf("(sumBeaconBalancesWei = %s) - (sumRestakedBalancesWei = %s) = %s\n", sumBeaconBalancesWei.String(), sumRestakedBalancesWei.String(), pendingBeaconWei.String())

totalRewards := map[string]*big.Float{
// `podBalanceGwei` - `withdrawableRestakedExecutionLayerGwei`
"pending_execution_wei": new(big.Float).SetInt(pendingExecutionWei),
Expand Down

0 comments on commit 8d05a66

Please sign in to comment.