mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 05:27:25 -04:00
Merge pull request #824
3adb29b Remove unnecessary synchronous call to useForkRules (Jaquee)
This commit is contained in:
@@ -686,14 +686,9 @@ Rectangle {
|
||||
}
|
||||
|
||||
function updatePriorityDropdown() {
|
||||
// Use new fee multipliers after v5 fork
|
||||
if (typeof currentWallet != "undefined" && currentWallet.useForkRules(5)) {
|
||||
priorityDropdown.dataModel = priorityModelV5;
|
||||
priorityDropdown.currentIndex = 1
|
||||
} else {
|
||||
priorityDropdown.dataModel = priorityModel;
|
||||
priorityDropdown.currentIndex = 0
|
||||
}
|
||||
priorityDropdown.dataModel = priorityModelV5;
|
||||
priorityDropdown.currentIndex = 1
|
||||
priorityDropdown.update()
|
||||
}
|
||||
|
||||
//TODO: Add daemon sync status
|
||||
|
||||
Reference in New Issue
Block a user