Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

accounts/abi: change unpacking of abi fields w/ underscores #16513

Merged
merged 2 commits into from
Dec 29, 2018

Commits on Dec 28, 2018

  1. accounts/abi: change unpacking of 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.
    mkrump authored and gballet committed Dec 28, 2018
    Configuration menu
    Copy the full SHA
    93d8814 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2018

  1. Configuration menu
    Copy the full SHA
    85d5234 View commit details
    Browse the repository at this point in the history