Skip to content

Commit

Permalink
add block number to confirmed info from generate_deposits
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jul 3, 2024
1 parent 57eeb0c commit 3c60b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/coordinator/tasks/generate_deposits/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (t *Task) Execute(ctx context.Context) error {
depositReceipts[tx.Hash().Hex()] = receipt

if receipt != nil {
t.logger.Infof("deposit %v confirmed (nonce: %v, status: %v)", tx.Hash().Hex(), tx.Nonce(), receipt.Status)
t.logger.Infof("deposit %v confirmed in block %v (nonce: %v, status: %v)", tx.Hash().Hex(), receipt.BlockNumber, tx.Nonce(), receipt.Status)
}
})
if err != nil {
Expand Down

0 comments on commit 3c60b8c

Please sign in to comment.