diff options
Diffstat (limited to 'src/subproviders')
-rw-r--r-- | src/subproviders/empty_wallet_subprovider.ts | 24 |
1 files changed, 0 insertions, 24 deletions
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 - } -} |