mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 07:12:17 +00:00
BitcoinUIModel: better parameter name
This commit is contained in:
parent
9d235ebc51
commit
8af5aa0c6c
@ -43,8 +43,8 @@ public class BitcoinUIModel {
|
||||
|
||||
private class ProgressBarUpdater extends DownloadListener {
|
||||
@Override
|
||||
protected void progress(double pct, int blocksSoFar, Date date) {
|
||||
super.progress(pct, blocksSoFar, date);
|
||||
protected void progress(double pct, int blocksLeft, Date date) {
|
||||
super.progress(pct, blocksLeft, date);
|
||||
Platform.runLater(() -> syncProgress.set(pct / 100.0));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user