aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/subproviders/src/index.ts')
-rw-r--r--packages/subproviders/src/index.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/subproviders/src/index.ts b/packages/subproviders/src/index.ts
index 566743fd0..d296c7be6 100644
--- a/packages/subproviders/src/index.ts
+++ b/packages/subproviders/src/index.ts
@@ -25,13 +25,3 @@ export async function ledgerEthereumBrowserClientFactoryAsync(): Promise<LedgerE
const ledgerEthClient = new LedgerEthereumClientFn(ledgerConnection);
return ledgerEthClient;
}
-
-// /**
-// * A factory for creating a LedgerEthereumClient usable in a Node.js context.
-// * @return LedgerEthereumClient A Node.js client
-// */
-// export async function ledgerEthereumNodeJsClientFactoryAsync(): Promise<LedgerEthereumClient> {
-// const ledgerConnection = await LedgerNodeCommunication.create_async();
-// const ledgerEthClient = new LedgerEthereumClientFn(ledgerConnection);
-// return ledgerEthClient;
-// }