1
0
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:
Albert Olivé 2023-08-25 12:38:50 +02:00 committed by GitHub
parent 679d6686e3
commit 6576a28edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}),
);