Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sidmorizon committed Dec 23, 2024
1 parent 7e1bf80 commit 39db1db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/example/server/wrappers/walletsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ export function tryParsePublicKey(stateInit: StateInit): Buffer | null {
if (wallet.init.code.equals(stateInit.code)) {
return loadData(stateInit.data.beginParse()).publicKey;
}
} catch (e) {}
} catch (e) {
// ignore
}
}

return null;
Expand Down

0 comments on commit 39db1db

Please sign in to comment.