Skip to content

Commit 1d12112

Browse files
committed
save
1 parent d378d93 commit 1d12112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/core/findStalePods.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ func FindStaleEigenpods(ctx context.Context, eth *ethclient.Client, nodeUrl stri
290290

291291
delta := new(big.Int).Sub(currentShares, currentTotalAssets)
292292
allowableDelta := FracMul(currentShares, big.NewInt(int64(tolerance)), big.NewInt(100))
293-
if delta.Cmp(allowableDelta) > 0 {
293+
if delta.Cmp(allowableDelta) >= 0 {
294294
if verbose {
295-
log.Printf("[%s] %sETH drop in assets (max allowed: %sETH, current shares: %sETH, anticipated shares: %sETH)\n",
295+
log.Printf("[%s] %sETH drop in assets (max drop allowed: %sETH, current shares: %sETH, anticipated shares: %sETH)\n",
296296
eigenpod,
297297
IweiToEther(delta).String(),
298298
IweiToEther(allowableDelta).String(),

0 commit comments

Comments
 (0)