Skip to content

Commit

Permalink
cmd/evm: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient committed Oct 19, 2024
1 parent 2de963e commit d45d989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/evm/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func runCmd(ctx *cli.Context) error {
fmt.Printf("Invalid input length for hex data (%d)\n", len(hexcode))
os.Exit(1)
}
code = common.FromHex(string(hexcode))
code = common.FromHex(hexcode)

runtimeConfig := runtime.Config{
Origin: sender,
Expand Down

0 comments on commit d45d989

Please sign in to comment.