Skip to content

Commit c8fe8fd

Browse files
committed
Fix go-gen
1 parent 6b2b2df commit c8fe8fd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/go-gen/src/schema.rs

+4
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,12 @@ pub fn custom_type_of(ty: &str) -> Option<&str> {
286286
match ty {
287287
"Uint64" => Some("Uint64"),
288288
"Uint128" => Some("string"),
289+
"Uint256" => Some("string"),
290+
"Uint512" => Some("string"),
289291
"Int64" => Some("Int64"),
290292
"Int128" => Some("string"),
293+
"Int256" => Some("string"),
294+
"Int512" => Some("string"),
291295
"Binary" => Some("[]byte"),
292296
"HexBinary" => Some("string"),
293297
"ReplyOn" => Some("replyOn"),

0 commit comments

Comments
 (0)