Skip to content

Commit

Permalink
Update x/evm/precompile/oracle.go
Browse files Browse the repository at this point in the history
Co-authored-by: Unique Divine <[email protected]>
  • Loading branch information
k-yang and Unique-Divine authored Oct 2, 2024
1 parent c84eb37 commit de62b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/evm/precompile/oracle.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (p precompileOracle) decomposeQueryExchangeRateArgs(args []any) (

pair, ok := args[0].(string)
if !ok {
err = fmt.Errorf("type validation for failed for (address erc20) argument")
err = ErrArgTypeValidation("string pair", args[0])
return
}

Expand Down

0 comments on commit de62b92

Please sign in to comment.