From d447b841935e49c0d768887fe50113aa7efa19ec Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Tue, 19 Mar 2024 20:09:24 -0700 Subject: [PATCH] [GUI] Update total available budget Update the total available budget to reflect the new block reward structure. --- src/qt/dlg_budgetProjection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/dlg_budgetProjection.py b/src/qt/dlg_budgetProjection.py index c840af6..aad1742 100644 --- a/src/qt/dlg_budgetProjection.py +++ b/src/qt/dlg_budgetProjection.py @@ -41,7 +41,7 @@ def displayBudgetProjection(self): total = self.projection[-1].get('Total_Allotted') total_label = "%s PIV" % str(total) self.ui.allottedBudget_label.setText(total_label) - self.ui.remainingBudget_label.setText("%s PIV" % str(round(43200.0 - total, 8))) + self.ui.remainingBudget_label.setText("%s PIV" % str(round(432000.0 - total, 8))) self.ui.passingProposals_label.setText("%s" % str(len(self.projection))) def item(value): @@ -82,7 +82,7 @@ def setupUi(self, BudgetProjectionDlg): header_layout.setFieldGrowthPolicy(QFormLayout.AllNonFixedFieldsGrow) # row 1 row = QHBoxLayout() - self.availableBudget_label = QLabel("43200.0 PIV") + self.availableBudget_label = QLabel("432000.0 PIV") row.addWidget(self.availableBudget_label) row.addStretch(1) row.addWidget(QLabel("Next SuperBlock: "))