diff --git a/src/pages/send/confirm/confirm.ts b/src/pages/send/confirm/confirm.ts index ee2123c67..3e4915c27 100644 --- a/src/pages/send/confirm/confirm.ts +++ b/src/pages/send/confirm/confirm.ts @@ -5,6 +5,7 @@ import * as _ from 'lodash'; // Pages import { SendPage } from '../../send/send'; +import { HomePage } from '../../home/home'; // Providers import { ConfigProvider } from '../../../providers/config/config'; @@ -611,4 +612,10 @@ export class ConfirmPage { } } + public onSuccessConfirm(): void { + this.sendStatus = ''; + this.navCtrl.setRoot(HomePage); + this.navCtrl.popToRoot(); + }; + }