Skip to content

Commit

Permalink
Update storage/pipeline/utils.go
Browse files Browse the repository at this point in the history
Co-authored-by: Łukasz Magiera <[email protected]>
  • Loading branch information
LexLuthr and magik6k authored Apr 5, 2024
1 parent 3e3344b commit a4bea28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storage/pipeline/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,10 @@ func simulateMsgGas(ctx context.Context, sa interface {
if err != nil {
return nil, xerrors.Errorf("failed to unmarshal the signed message: %w", err)
}
s := hex.EncodeToString(b.Bytes())

gmsg, err := sa.GasEstimateMessageGas(ctx, &msg, nil, types.EmptyTSK)
if err != nil {
err = fmt.Errorf("message %s failed: %w", s, err)
err = fmt.Errorf("message %x failed: %w", b.Bytes(), err)
}
return gmsg, err
}
Expand Down

0 comments on commit a4bea28

Please sign in to comment.