Skip to content

Commit 294451e

Browse files
authored
Solana withdrawals migration (#98)
* chore: start migrating to new allocator * chore: start migrating to new allocator * chore: start migrating to new allocator * chore: start migrating to new allocator * chore: start migrating to new allocator * chore: start migrating to new allocator * fix: onchain allocator cache * fix: onchain allocator cache * fix: onchain allocator cache * chore: migrate to new allocator * chore: migrate to new allocator * chore: migrate to new allocator * chore: migrate to new allocator * chore: migrate to new allocator * chore: migrate to new allocator * chore: migrate to new allocator * chore: upgrade sdk * feat: prepare for solana withdrawals migration * fix: build * feat: prepare for solana withdrawals migration * feat: prepare for solana withdrawals migration
1 parent 0063e7d commit 294451e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/services/action-executor/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ export class ActionExecutorService {
105105
// Step 1:
106106
// Ensure the withdrawal request exists in the first place
107107
if (!(await getWithdrawalRequest(message.result.withdrawalId, { tx }))) {
108-
throw externalError("Withdrawal request does not exist");
108+
throw externalError(
109+
`Withdrawal request does not exist: ${message.result.withdrawalId}`
110+
);
109111
}
110112

111113
// Step 2:

0 commit comments

Comments
 (0)