Skip to content

Commit 38058df

Browse files
[DDW-1190] Stop rounding block sync progress to integer
1 parent f90b121 commit 38058df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/main/utils/handleCheckBlockReplayProgress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const createHandleNewLogLine = (mainWindow: BrowserWindow) => {
6868
return;
6969
}
7070

71-
const progress = Math.floor(parseFloat(unparsedProgress));
71+
const progress = parseFloat(unparsedProgress);
7272

7373
if (progressReport[type] !== progress) {
7474
progressReport[type] = progress;

0 commit comments

Comments
 (0)