We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fbdf1 commit 919bfd3Copy full SHA for 919bfd3
scripts/svm/simpleFill.ts
@@ -55,7 +55,7 @@ async function fillRelay(): Promise<void> {
55
const originChainId = new BN(resolvedArgv.originChainId);
56
const depositId = intToU8Array32(new BN(resolvedArgv.depositId));
57
const fillDeadline = resolvedArgv.fillDeadline || Math.floor(Date.now() / 1000) + 60; // Current time + 1 minute
58
- const exclusivityDeadline = resolvedArgv.exclusivityDeadline || Math.floor(Date.now() / 1000) + 30; // Current time + 30 seconds
+ const exclusivityDeadline = resolvedArgv.exclusivityDeadline ?? 0; // default to 0
59
const message = Buffer.from("");
60
const seed = new BN(resolvedArgv.seed);
61
0 commit comments