Skip to content

Commit

Permalink
wallet tracking optimization to reduce the dynamodb load
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Cosentino committed Jan 6, 2024
1 parent 4c5af4d commit 1add5a7
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 136 deletions.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

__metaclass__ = type # pylint: disable=invalid-name

__version__ = "0.2.3"
__version__ = "v0.2.3"
__author__ = "F."
4 changes: 1 addition & 3 deletions tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,7 @@ async def main(self):
await self.application.initialize()

gas_tracker = GasTracker(application=self.application, logger=self.logger)
wallet_tracker = WalletTracker(
application=self.application, logger=self.logger
)
wallet_tracker = WalletTracker(application=self.application)

# Define conversation handler for '/track' command
track_conv_handler = ConversationHandler(
Expand Down
Loading

0 comments on commit 1add5a7

Please sign in to comment.