Skip to content

Commit

Permalink
feature: logic and error handling improvements to CNftSolMinter
Browse files Browse the repository at this point in the history
  • Loading branch information
newbreedofgeek committed Sep 13, 2024
1 parent 507e028 commit c506deb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itheum/sdk-mx-data-nft",
"version": "3.7.0-alpha.3",
"version": "3.7.0-alpha.4",
"description": "SDK for Itheum's Data NFT Technology on MultiversX and Solana",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
5 changes: 3 additions & 2 deletions src/cnft-sol-minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,9 @@ export class CNftSolMinter extends MinterSol {
throw e;
}
}
} catch (e) {
console.error(e);
} catch (error) {
console.error(error);
throw error;
}

return {
Expand Down

0 comments on commit c506deb

Please sign in to comment.