Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NeOMakinG committed Sep 26, 2024
1 parent 9148740 commit ae82f69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/coinstacks/solana/api/src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ export class Service implements Omit<BaseAPI, 'getInfo'>, API {
}

async getTransaction(): Promise<Tx> {
throw new Error('Method not implemented.')
throw new Error('Method not implemented.')
}

async getAccount(): Promise<Account> {
throw new Error('Method not implemented.')
async getAccount(): Promise<Account> {
throw new Error('Method not implemented.')
}

async getTxHistory(): Promise<TxHistory> {
throw new Error('Method not implemented.')
throw new Error('Method not implemented.')
}

async sendTx(body: SendTxBody): Promise<string> {
Expand Down

0 comments on commit ae82f69

Please sign in to comment.