Skip to content

Commit 9abdf24

Browse files
committed
fix: pass version to build attestation
1 parent 9e3abfc commit 9abdf24

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cli/commands/contracts/disputeManager.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@ interface ChannelKey {
1616
}
1717

1818
async function buildAttestation(receipt: Receipt, signer: string, disputeManagerAddress: string) {
19-
const attestation = await createAttestation(signer, getChainID(), disputeManagerAddress, receipt)
19+
const attestation = await createAttestation(
20+
signer,
21+
getChainID(),
22+
disputeManagerAddress,
23+
receipt,
24+
'0',
25+
)
2026
return attestation
2127
}
2228

0 commit comments

Comments
 (0)