Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
boyuan-chen committed Mar 26, 2024
1 parent 7690d94 commit ec498fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2geth/ethdumper/dumper.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func NewEthDumper() EthDumper {
}
}
ethAddres := EthAddress{}
err = json.Unmarshal([]byte(byteFile), &ethAddres)
err = json.Unmarshal(byteFile, &ethAddres)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit ec498fc

Please sign in to comment.