From c4ee2d73865a1444c079b9e2836b7630a0adf03e Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Sun, 12 Nov 2017 22:17:18 -0500 Subject: Switch over to Lerna + Yarn Workspaces setup for a mono-repo approach --- src/subproviders/empty_wallet_subprovider.ts | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/subproviders/empty_wallet_subprovider.ts (limited to 'src/subproviders') diff --git a/src/subproviders/empty_wallet_subprovider.ts b/src/subproviders/empty_wallet_subprovider.ts deleted file mode 100644 index 2f260217c..000000000 --- a/src/subproviders/empty_wallet_subprovider.ts +++ /dev/null @@ -1,24 +0,0 @@ -import {JSONRPCPayload} from '../types'; - -/* - * This class implements the web3-provider-engine subprovider interface and returns - * that the provider has no addresses when queried. - * Source: https://github.com/MetaMask/provider-engine/blob/master/subproviders/subprovider.js - */ -export class EmptyWalletSubProvider { - public handleRequest(payload: JSONRPCPayload, next: () => void, end: (err: Error|null, result: any) => void) { - switch (payload.method) { - case 'eth_accounts': - end(null, []); - return; - - default: - next(); - return; - } - } - // Required to implement this method despite not needing it for this subprovider - public setEngine(engine: any) { - // noop - } -} -- cgit v1.2.3