diff --git a/src.ts/abi/fragments.ts b/src.ts/abi/fragments.ts index 487ba6c822..6fce9a798b 100644 --- a/src.ts/abi/fragments.ts +++ b/src.ts/abi/fragments.ts @@ -645,7 +645,6 @@ export class ParamType { result += `[${ (this.arrayLength < 0 ? "": String(this.arrayLength)) }]`; } else { if (this.isTuple()) { - if (format !== "sighash") { result += this.type; } result += "(" + this.components.map( (comp) => comp.format(format) ).join((format === "full") ? ", ": ",") + ")";