From dfa37ed86172e14901f332541d41835026fe10c8 Mon Sep 17 00:00:00 2001 From: Justin Brower Date: Wed, 22 Jan 2025 20:28:48 -0500 Subject: [PATCH] fix cli --- cli/core/findStalePods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/core/findStalePods.go b/cli/core/findStalePods.go index af6c2be..f9b0b11 100644 --- a/cli/core/findStalePods.go +++ b/cli/core/findStalePods.go @@ -194,7 +194,7 @@ func ComputeBalanceDeviationSync(ctx context.Context, eth *ethclient.Client, sta }) PanicOnError("failed to load owner shares", err) - var sharesPendingWithdrawal *big.Int + var sharesPendingWithdrawal *big.Int = new(big.Int).SetUint64(0) withdrawalInfo, err := delegationManager.GetQueuedWithdrawals(nil, podOwner) PanicOnError("failed to load queued withdrawals", err)