Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Prohaszka <[email protected]>
  • Loading branch information
sprohaszka-ledger committed Apr 22, 2024
1 parent cab4342 commit 0f75dee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/ledger-live-common/src/families/solana/bridge/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
import { Functions } from "@ledgerhq/coin-solana/utils";
import { makeBridges } from "@ledgerhq/coin-solana/bridge/bridge";
import { SolanaAddress, SolanaSignature, SolanaSigner } from "@ledgerhq/coin-solana/signer";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { getMockedMethods } from "./mock-data";

function mockChainAPI(config: Config): ChainAPI {
Expand Down Expand Up @@ -87,7 +86,8 @@ function createMockDataForAPI() {

function getMockedAPIs() {
const signer = {
getAddress: (_path: string, _display?: boolean) => Promise.resolve({ address: Buffer.from("") }),
getAddress: (_path: string, _display?: boolean) =>
Promise.resolve({ address: Buffer.from("") }),
signTransaction: (_path: string, _txBuffer: Buffer) =>
Promise.resolve({ signature: Buffer.from("") }),
};
Expand Down

0 comments on commit 0f75dee

Please sign in to comment.