Finish implementation and tests for the cheat system #3

Closed
m wants to merge 67 commits from cheat-refactor into master
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 6b75c847b8 - Show all commits

View File

@ -47,6 +47,9 @@ class Agora(object):
self.lc_dash = LoopingCall(self.loop_check)
self.lc_dash.start(int(settings.Agora.RefreshSec))
self.lc_cheat = LoopingCall(self.update_prices)
self.lc_cheat.start(int(settings.Agora.CheatSec))
def wrap_dashboard(self):
try:
dash = self.agora.dashboard_seller()