diff --git a/rust/candid_parser/src/bindings/motoko.rs b/rust/candid_parser/src/bindings/motoko.rs index 8c981553..fc8f0a61 100644 --- a/rust/candid_parser/src/bindings/motoko.rs +++ b/rust/candid_parser/src/bindings/motoko.rs @@ -121,7 +121,6 @@ fn pp_ty(ty: &Type) -> RcDoc { } Principal => str("Principal"), Opt(ref t) => str("?").append(pp_ty(t)), - // Vec(ref t) if matches!(t.as_ref(), Nat8) => str("Blob"), // Why? Vec(ref t) => enclose("[", pp_ty(t), "]"), Record(ref fs) => { if is_tuple(ty) {