mirror of
https://github.com/status-im/op-geth.git
synced 2025-02-13 15:26:32 +00:00
a4af734328
* accounts/abi: fix name styling when unpacking abi fields w/ underscores ABI fields with underscores that are being unpacked into structs expect structs with following form: int_one -> Int_one whereas in abigen the generated structs are camelcased int_one -> IntOne so updated the unpack method to expect camelcased structs as well.