Skip to content

Commit 2b67488

Browse files
committed
Fixed ParamType formatting causing bad tuple full and minimal ABI output (#4329, #4479).
1 parent da34e35 commit 2b67488

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src.ts/abi/fragments.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,6 @@ export class ParamType {
645645
result += `[${ (this.arrayLength < 0 ? "": String(this.arrayLength)) }]`;
646646
} else {
647647
if (this.isTuple()) {
648-
if (format !== "sighash") { result += this.type; }
649648
result += "(" + this.components.map(
650649
(comp) => comp.format(format)
651650
).join((format === "full") ? ", ": ",") + ")";

0 commit comments

Comments
 (0)