Skip to content

Commit

Permalink
fix: small change to trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
k0beLeenders committed Aug 8, 2024
1 parent 90ef740 commit 9040c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/marginfi-client-v2/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const MFI_ERROR_CODE_MAP: Map<number, string> = new Map(MARGINFI_IDL.errors.map(
export function parseTransactionError(error: any, mfiProgramId: PublicKey) {
const logs = error?.logs;
const name = error?.name;
let message = error?.transactionMessage ?? error?.message;
let message = error?.transactionMessage ?? error?.message ?? error?.err;
let programId = error?.programId;
let code = error?.code;

Expand Down

0 comments on commit 9040c97

Please sign in to comment.