We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9503093 commit e361ac5Copy full SHA for e361ac5
src/qt/dlg_sweepAll.py
@@ -68,7 +68,7 @@ def item(value):
68
self.ui.tableW.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
69
70
total = sum([float(mnode['total_rewards']) for mnode in self.rewards])
71
- self.ui.totalLine.setText("<b>%s</b>" % str(total))
+ self.ui.totalLine.setText("<b>%s</b>" % str(round(total,8)))
72
73
# update fee
74
estimatedTxSize = (44+numOfInputs*148)*1.0 / 1000 # kB
0 commit comments