1
0
Fork 0
forked from lthn/blockchain

gui: reset default mixin to 10 after sending a tx

This commit is contained in:
sowle 2020-05-20 18:34:37 +03:00
parent 15ea90c14e
commit dbf70494ba
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -7276,7 +7276,7 @@ var SendComponent = /** @class */ (function () {
if (send_status) {
_this.modalService.prepareModal('success', 'SEND.SUCCESS_SENT');
_this.variablesService.currentWallet.send_data = { address: null, amount: null, comment: null, mixin: null, fee: null, hide: null };
_this.sendForm.reset({ address: null, amount: null, comment: null, mixin: 0, fee: _this.variablesService.default_fee, hide: false });
_this.sendForm.reset({ address: null, amount: null, comment: null, mixin: 10, fee: _this.variablesService.default_fee, hide: false });
}
});
}