Skip to content

Commit

Permalink
fix: fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikRevich committed Mar 27, 2024
1 parent 5405cf8 commit b40d1b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasmsdk/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func getNotProcessedZCNBurnTickets() string {
func estimateGasAmount(from, to string, value int64) string { // nolint:golint,unused
estimateGasAmountResponse, err := bridge.EstimateGasAmount(context.Background(), from, to, value)
if err != nil {
return errors.Wrap("estimateGasPrice", "failed to estimate gas price", err).Error()
return errors.Wrap("estimateGasAmount", "failed to estimate gas price", err).Error()
}

var result []byte
Expand Down

0 comments on commit b40d1b2

Please sign in to comment.