(frequency int)
| 483 | } |
| 484 | |
| 485 | func AutomaticallyUpdateChannels(frequency int) { |
| 486 | for { |
| 487 | time.Sleep(time.Duration(frequency) * time.Minute) |
| 488 | common.SysLog("updating all channels") |
| 489 | _ = updateAllChannelsBalance() |
| 490 | common.SysLog("channels update done") |
| 491 | } |
| 492 | } |
no test coverage detected