Skip to content

Commit 0a3387b

Browse files
committed
fix: test
Signed-off-by: Pablo Maldonado <pablomaldonadoturci@gmail.com>
1 parent 51254f5 commit 0a3387b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/SVMSpokePoolClient.fills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ describe("SVMSpokePoolClient: Fills", function () {
208208
it("Closes the fill pda after the fill deadline has passed", async () => {
209209
const currentSlot = await solanaClient.rpc.getSlot({ commitment: "confirmed" }).send();
210210
const currentSlotTimestamp = await solanaClient.rpc.getBlockTime(currentSlot).send();
211-
const fillDeadline = Number(currentSlotTimestamp) + 3;
211+
const fillDeadline = Number(currentSlotTimestamp) + 1;
212212
await setCurrentTime(signer, solanaClient, Number(currentSlotTimestamp));
213213
const newRelayData = { ...relayData, depositId: new Uint8Array(intToU8Array32(getRandomInt())), fillDeadline };
214214
const formattedRelayData = formatRelayData(newRelayData);

0 commit comments

Comments
 (0)