mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Remove unused buyEth fn from bg (#9236)
This commit is contained in:
parent
e021acdc0a
commit
c2edc342fb
@ -47,7 +47,6 @@ import { PermissionsController } from './controllers/permissions'
|
|||||||
import getRestrictedMethods from './controllers/permissions/restrictedMethods'
|
import getRestrictedMethods from './controllers/permissions/restrictedMethods'
|
||||||
import nodeify from './lib/nodeify'
|
import nodeify from './lib/nodeify'
|
||||||
import accountImporter from './account-import-strategies'
|
import accountImporter from './account-import-strategies'
|
||||||
import getBuyEthUrl from './lib/buy-eth-url'
|
|
||||||
import selectChainId from './lib/select-chain-id'
|
import selectChainId from './lib/select-chain-id'
|
||||||
import { Mutex } from 'await-semaphore'
|
import { Mutex } from 'await-semaphore'
|
||||||
import { version } from '../manifest/_base.json'
|
import { version } from '../manifest/_base.json'
|
||||||
@ -449,7 +448,6 @@ export default class MetamaskController extends EventEmitter {
|
|||||||
setCurrentLocale: this.setCurrentLocale.bind(this),
|
setCurrentLocale: this.setCurrentLocale.bind(this),
|
||||||
markPasswordForgotten: this.markPasswordForgotten.bind(this),
|
markPasswordForgotten: this.markPasswordForgotten.bind(this),
|
||||||
unMarkPasswordForgotten: this.unMarkPasswordForgotten.bind(this),
|
unMarkPasswordForgotten: this.unMarkPasswordForgotten.bind(this),
|
||||||
buyEth: this.buyEth.bind(this),
|
|
||||||
safelistPhishingDomain: this.safelistPhishingDomain.bind(this),
|
safelistPhishingDomain: this.safelistPhishingDomain.bind(this),
|
||||||
getRequestAccountTabIds: (cb) => cb(null, this.getRequestAccountTabIds()),
|
getRequestAccountTabIds: (cb) => cb(null, this.getRequestAccountTabIds()),
|
||||||
getOpenMetamaskTabsIds: (cb) => cb(null, this.getOpenMetamaskTabsIds()),
|
getOpenMetamaskTabsIds: (cb) => cb(null, this.getOpenMetamaskTabsIds()),
|
||||||
@ -1879,24 +1877,6 @@ export default class MetamaskController extends EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* A method for forwarding the user to the easiest way to obtain ether,
|
|
||||||
* or the network "gas" currency, for the current selected network.
|
|
||||||
*
|
|
||||||
* @param {string} address - The address to fund.
|
|
||||||
* @param {string} amount - The amount of ether desired, as a base 10 string.
|
|
||||||
*/
|
|
||||||
buyEth (address, amount) {
|
|
||||||
if (!amount) {
|
|
||||||
amount = '5'
|
|
||||||
}
|
|
||||||
const network = this.networkController.getNetworkState()
|
|
||||||
const url = getBuyEthUrl({ network, address, amount })
|
|
||||||
if (url) {
|
|
||||||
this.platform.openTab({ url })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// network
|
// network
|
||||||
/**
|
/**
|
||||||
* A method for selecting a custom URL for an ethereum RPC provider and updating it
|
* A method for selecting a custom URL for an ethereum RPC provider and updating it
|
||||||
|
Loading…
x
Reference in New Issue
Block a user