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

CollectionCompress doesn't work #9

Open
vlad-zotov opened this issue Jul 2, 2019 · 0 comments
Open

CollectionCompress doesn't work #9

vlad-zotov opened this issue Jul 2, 2019 · 0 comments

Comments

@vlad-zotov
Copy link

Code sample:

@Abi
public class MyArgs {
    private List<Argument> arguments;

    public MyArgs(List<Argument> arguments) {
        this.arguments = arguments;
    }

    @CollectionCompress
    public List<Argument> getArgument() {
        return arguments;
    }
}

@Abi
public class Argument {
    private String data;

    @NameCompress
    public String getData() {
        return data;
    }
}

String hex = abiBinaryGenTransferWriter
				.squishMyArgs(args)
				.toHex();

If I pass that hex data to abi_bin_to_json I get json with empty list of arguments.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant