feat: update tx size in real time

This commit is contained in:
Vlad Stan
2022-08-03 13:50:07 +03:00
parent cec44f4a99
commit 24d162f3fc
4 changed files with 34 additions and 14 deletions
@@ -162,6 +162,9 @@ async function payment(path) {
}
this.selectChangeAddress(this.changeWallet)
},
handleOutputsChange: function () {
this.$refs.utxoList.applyUtxoSelectionMode()
},
getTotalPaymentAmount: function () {
return this.sendToList.reduce((t, a) => t + (a.amount || 0), 0)
}