Skip to content

Commit

Permalink
remove TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
ARR552 committed Aug 28, 2024
1 parent f735920 commit 4c2f11e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion claimtxman/claimtxman.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func (tm *ClaimTxManager) processDepositStatus(ger *etherman.GlobalExitRoot, dbT
continue
}

claimHash, err := tm.bridgeService.GetDepositStatus(tm.ctx, deposit.DepositCount, deposit.NetworkID, deposit.DestinationNetwork) // TODO si fallan los test del autoclaim podria ser por esto
claimHash, err := tm.bridgeService.GetDepositStatus(tm.ctx, deposit.DepositCount, deposit.NetworkID, deposit.DestinationNetwork)
if err != nil {
log.Errorf("rollupID: %d, error getting deposit status for deposit id %d. Error: %v", tm.rollupID, deposit.Id, err)
return err
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/bridge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func TestE2E(t *testing.T) {
require.Equal(t, amount, balance2)

// Check globalExitRoot
globalExitRoot3, err := opsman.GetLatestGlobalExitRootFromL1(ctx) // TODO UY aqui no me cuadra que consulte al de trusted en vez de al normal. Seria GetLatestGlobalExitRootFromL1
globalExitRoot3, err := opsman.GetLatestGlobalExitRootFromL1(ctx)
require.NoError(t, err)
// Check L2 funds
balance, err = opsman.CheckAccountTokenBalance(ctx, operations.L2, tokenAddr, &destAddr)
Expand Down

0 comments on commit 4c2f11e

Please sign in to comment.