Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
badgersrus committed Aug 14, 2024
1 parent b91c82a commit 10b4673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/host/l1/publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ func (p *Publisher) publishTransaction(tx types.TxData) error {
}
receipt, err = p.ethClient.TransactionReceipt(signedTx.Hash())
if err != nil {
return fmt.Errorf("could not get receipt for L1 tx=%s: %w", signedTx.Hash(), err)
return fmt.Errorf("could not get receipt publishing tx for L1 tx=%s: %w", signedTx.Hash(), err)
}
return err
},
Expand Down Expand Up @@ -472,7 +472,7 @@ func (p *Publisher) awaitTransaction(tx *types.Transaction) error {
func() error {
receipt, err = p.ethClient.TransactionReceipt(tx.Hash())
if err != nil {
return fmt.Errorf("could not get receipt for L1 tx=%s: %w", tx.Hash(), err)
return fmt.Errorf("could not get receipt for xchain L1 tx=%s: %w", tx.Hash(), err)
}
return err
},
Expand Down

0 comments on commit 10b4673

Please sign in to comment.