Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

fix: multisig rune proof size #829

Merged
merged 1 commit into from
Mar 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion patterns/multisig/MultisigRune.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ export class MultisigRune<out C extends Chain, out U>
call,
otherSignatories: this.otherSignatories(sender),
storeCall: false,
maxWeight: call.feeEstimate().access("weight"),
maxWeight: call.feeEstimate().access("weight")
// TODO: revert when this is merged https://github.com/paritytech/substrate/pull/13766
.map((weight) => ({ ...weight, proofSize: 200_000_000n })),
ryanleecode marked this conversation as resolved.
Show resolved Hide resolved
maybeTimepoint: this.maybeTimepoint(call.hash),
}),
})
Expand Down