Skip to content

Commit

Permalink
fix: skip ordinals for cactus
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwbabylonlab committed Oct 8, 2024
1 parent 8500663 commit 1109e82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-staking",
"version": "0.3.8",
"version": "0.3.9",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
3 changes: 2 additions & 1 deletion src/utils/wallet/providers/cactuslink_wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export class CactusLinkWallet extends WalletProvider {
};

getInscriptions(): Promise<InscriptionIdentifier[]> {
throw new Error("Method not implemented.");
// Temporary solution to ignore inscriptions filtering for Cactus Link Wallet
return Promise.resolve([]);
}
}

0 comments on commit 1109e82

Please sign in to comment.