Skip to content

Commit

Permalink
fix: update the bets using a serialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamantios committed Nov 3, 2023
1 parent 3059122 commit e113350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/valory/skills/market_manager_abci/rounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def end_block(self) -> Optional[Tuple[BaseSynchronizedData, Enum]]:
if event != Event.FETCH_ERROR:
return res

synced_data.update(SynchronizedData, bets=synced_data.bets)
synced_data.update(SynchronizedData, bets=synced_data.db.get("bets", ""))
return synced_data, event


Expand Down

0 comments on commit e113350

Please sign in to comment.