bug fixes
This commit is contained in:
parent
07a9b96688
commit
1a6f234331
1 changed files with 3 additions and 3 deletions
6
setup.go
6
setup.go
|
@ -153,15 +153,15 @@ func (s *Sync) waitForNewBlock() error {
|
|||
return err
|
||||
}
|
||||
|
||||
for status.BlockchainStatus.Blocks == 0 || status.BlockchainStatus.BlocksBehind != 0 {
|
||||
for status.Wallet.Blocks == 0 || status.Wallet.BlocksBehind != 0 {
|
||||
time.Sleep(5 * time.Second)
|
||||
status, err = s.daemon.Status()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
currentBlock := status.BlockchainStatus.Blocks
|
||||
for i := 0; status.BlockchainStatus.Blocks <= currentBlock; i++ {
|
||||
currentBlock := status.Wallet.Blocks
|
||||
for i := 0; status.Wallet.Blocks <= currentBlock; i++ {
|
||||
if i%3 == 0 {
|
||||
log.Printf("Waiting for new block (%d)...", currentBlock+1)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue