Increase sleep duration in share emission and purchase logic to 30 seconds

This commit is contained in:
Lukian 2025-01-18 21:39:40 +01:00
parent df6417e3ea
commit 9b0985c33c
2 changed files with 2 additions and 2 deletions

View file

@ -62,5 +62,5 @@ if __name__ == "__main__":
shareId = randint(0, len(shares) - 1)
buyShare(randint(0, len(shareholders) - 1), shareId, shares[shareId]["price"] + randint(-20, 20))
sleep(4)
sleep(30)