Skip to content

Commit

Permalink
bytes datatypes added
Browse files Browse the repository at this point in the history
Signed-off-by: Hendrik Ebbers <hendrik.ebbers@web.de>
  • Loading branch information
hendrikebbers committed Jan 27, 2025
1 parent 02c50ae commit cffe89e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public enum BytesBasedDatatype implements ParamSupplier<Bytes> {

BYTES("bytes", (v, params) -> params.addBytes(v.bytes())),
BYTES32("bytes32", (v, params) -> params.addBytes(v.bytes()));
BYTES32("bytes32", (v, params) -> params.addBytes32(v.bytes()));

private final String nativeType;

Expand Down

0 comments on commit cffe89e

Please sign in to comment.