From fa90a343f9db0cfd0fface29549dfcb083e84c76 Mon Sep 17 00:00:00 2001 From: JDonadio Date: Tue, 14 Nov 2017 10:25:53 -0300 Subject: [PATCH] fix method name --- src/providers/profile/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/profile/profile.ts b/src/providers/profile/profile.ts index 201ab7316..98904f582 100644 --- a/src/providers/profile/profile.ts +++ b/src/providers/profile/profile.ts @@ -134,7 +134,7 @@ export class ProfileProvider { this.logger.debug('BWC Notification:', n); if (n.type == "NewIncomingTx") { - this.walletProvider.getTxHistory_(wallet, { force: true }).catch((err) => { + this.walletProvider.getTxHistory(wallet, { force: true }).catch((err) => { this.logger.warn('Could not get the tx history for: ' + wallet.credentials.walletId); }) }