Skip to content

Commit

Permalink
interpolation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trajan0x committed Jun 9, 2024
1 parent c45c453 commit f458ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethergo/backends/base/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func (b *Backend) WaitForConfirmation(parentCtx context.Context, transaction *ty
if err != nil {
errMessage := fmt.Sprintf("could not call contract: %v on tx: %s", err, transaction.Hash())
if b.RPCAddress() != "" {
errMessage += fmt.Sprintf("\nFor more info run (before the process stops): cast run --rpc-url %s %s --trace-printer %s", b.RPCAddress(), transaction.Hash())
errMessage += fmt.Sprintf("\nFor more info run (before the process stops): cast run --rpc-url %s %s --trace-printer ", b.RPCAddress(), transaction.Hash())

if core.GetEnvBool("TRACELY_ENABLED", false) {
errMessage += b.addCastLabels(transaction, callMessage.From)
Expand Down

0 comments on commit f458ffe

Please sign in to comment.