mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-03 18:13:48 +00:00
cmd/geth: round the import ETA before converting to string
This commit is contained in:
parent
271fb20ecb
commit
c4af70d0cc
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ func (js *jsre) syncProgress(call otto.FunctionCall) otto.Value {
|
|||
"pending": pending,
|
||||
"cached": cached,
|
||||
"importing": importing,
|
||||
"estimate": eta.String(),
|
||||
"estimate": (eta / time.Second * time.Second).String(),
|
||||
})
|
||||
return v
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue