Normalise subprovider names
This commit is contained in:
		@@ -5,7 +5,7 @@ import {JSONRPCPayload} from '../../../src/types';
 | 
			
		||||
 * that the provider has no addresses when queried.
 | 
			
		||||
 * Source: https://github.com/MetaMask/provider-engine/blob/master/subproviders/subprovider.js
 | 
			
		||||
 */
 | 
			
		||||
export class EmptyWalletSubProvider {
 | 
			
		||||
export class EmptyWalletSubprovider {
 | 
			
		||||
    // This method needs to be here to satisfy the interface but linter wants it to be static.
 | 
			
		||||
    // tslint:disable-next-line:prefer-function-over-method
 | 
			
		||||
    public handleRequest(payload: JSONRPCPayload, next: () => void, end: (err: Error|null, result: any) => void) {
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@ import {JSONRPCPayload} from '../../../src/types';
 | 
			
		||||
 * the constant gas estimate when queried.
 | 
			
		||||
 * Source: https://github.com/MetaMask/provider-engine/blob/master/subproviders/subprovider.js
 | 
			
		||||
 */
 | 
			
		||||
export class FakeGasEstimateProvider {
 | 
			
		||||
export class FakeGasEstimateSubprovider {
 | 
			
		||||
    private constantGasAmount: number;
 | 
			
		||||
    constructor(constantGasAmount: number) {
 | 
			
		||||
        this.constantGasAmount = constantGasAmount;
 | 
			
		||||
 
 | 
			
		||||
@@ -7,8 +7,8 @@ import * as Web3 from 'web3';
 | 
			
		||||
import ProviderEngine = require('web3-provider-engine');
 | 
			
		||||
import RpcSubprovider = require('web3-provider-engine/subproviders/rpc');
 | 
			
		||||
 | 
			
		||||
import {EmptyWalletSubProvider} from './subproviders/empty_wallet_subprovider';
 | 
			
		||||
import {FakeGasEstimateProvider} from './subproviders/fake_gas_estimate_subprovider';
 | 
			
		||||
import {EmptyWalletSubprovider} from './subproviders/empty_wallet_subprovider';
 | 
			
		||||
import {FakeGasEstimateSubprovider} from './subproviders/fake_gas_estimate_subprovider';
 | 
			
		||||
 | 
			
		||||
import {constants} from './constants';
 | 
			
		||||
 | 
			
		||||
@@ -23,9 +23,9 @@ export const web3Factory = {
 | 
			
		||||
        const provider = new ProviderEngine();
 | 
			
		||||
        const rpcUrl = `http://${constants.RPC_HOST}:${constants.RPC_PORT}`;
 | 
			
		||||
        if (!hasAddresses) {
 | 
			
		||||
            provider.addProvider(new EmptyWalletSubProvider());
 | 
			
		||||
            provider.addProvider(new EmptyWalletSubprovider());
 | 
			
		||||
        }
 | 
			
		||||
        provider.addProvider(new FakeGasEstimateProvider(constants.GAS_ESTIMATE));
 | 
			
		||||
        provider.addProvider(new FakeGasEstimateSubprovider(constants.GAS_ESTIMATE));
 | 
			
		||||
        provider.addProvider(new RpcSubprovider({
 | 
			
		||||
            rpcUrl,
 | 
			
		||||
        }));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user