mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
Added missing bindings (#20602)
This commit is contained in:
parent
679d6686e3
commit
6576a28edf
@ -4186,14 +4186,21 @@ export default class MetamaskController extends EventEmitter {
|
||||
this.institutionalFeaturesController,
|
||||
),
|
||||
handleMmiCheckIfTokenIsPresent:
|
||||
this.mmiController.handleMmiCheckIfTokenIsPresent.bind(this),
|
||||
handleMmiDashboardData:
|
||||
this.mmiController.handleMmiDashboardData.bind(this),
|
||||
handleMmiOpenSwaps: this.mmiController.handleMmiOpenSwaps.bind(this),
|
||||
this.mmiController.handleMmiCheckIfTokenIsPresent.bind(
|
||||
this.mmiController,
|
||||
),
|
||||
handleMmiDashboardData: this.mmiController.handleMmiDashboardData.bind(
|
||||
this.mmiController,
|
||||
),
|
||||
handleMmiOpenSwaps: this.mmiController.handleMmiOpenSwaps.bind(
|
||||
this.mmiController,
|
||||
),
|
||||
handleMmiSetAccountAndNetwork:
|
||||
this.mmiController.setAccountAndNetwork.bind(this),
|
||||
this.mmiController.setAccountAndNetwork.bind(this.mmiController),
|
||||
handleMmiOpenAddHardwareWallet:
|
||||
this.mmiController.handleMmiOpenAddHardwareWallet.bind(this),
|
||||
this.mmiController.handleMmiOpenAddHardwareWallet.bind(
|
||||
this.mmiController,
|
||||
),
|
||||
///: END:ONLY_INCLUDE_IN
|
||||
}),
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user