We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@Constr public class Person { private String name; @Enc("hex") private String publicKey; private int age; }
'0x' is missing in the publicKey field of the de-serialized object.
Example:
Person data : Person{name='Alice', publicKey='0x6dcf4915b05a1358d86e87d352f2fa7392fa6c092b337af705b577822d06d17e', age=25} CBOR Hex : d8799f45416c69636558206dcf4915b05a1358d86e87d352f2fa7392fa6c092b337af705b577822d06d17e1819ff Deserialized Person object : Person{name='Alice', publicKey='6dcf4915b05a1358d86e87d352f2fa7392fa6c092b337af705b577822d06d17e', age=25}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
'0x' is missing in the publicKey field of the de-serialized object.
Example:
The text was updated successfully, but these errors were encountered: