Skip to content

Commit

Permalink
Merge pull request #19 from secretkeylabs/fix/etch-typos
Browse files Browse the repository at this point in the history
fix: typos
  • Loading branch information
m-aboelenein authored Jun 4, 2024
2 parents a056af6 + eeb41df commit b484a83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adapters/satsConnectAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ abstract class SatsConnectAdapter {
try {
const walletInfo = await this.requestInternal('getInfo', null).catch(() => null);
if (walletInfo && walletInfo.status === 'success') {
const isMintSupported = walletInfo.result.methods?.includes('rune_etch');
if (isMintSupported) {
const isEtchSupported = walletInfo.result.methods?.includes('runes_etch');
if (isEtchSupported) {
const response = await this.requestInternal('runes_etch', params);
if (response) {
return response;
Expand Down

0 comments on commit b484a83

Please sign in to comment.