Skip to content

Commit

Permalink
Merge pull request #116 from aviate-labs/hotfix/nodeproviderdb-init
Browse files Browse the repository at this point in the history
fix param ordering
  • Loading branch information
mourginakis authored Nov 9, 2023
2 parents 216d51d + 1b8a87f commit f05fbe8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node_monitor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
slack_bot = SlackBot(c.TOKEN_SLACK)
telegram_bot = TelegramBot(c.TOKEN_TELEGRAM)
node_provider_db = NodeProviderDB(
c.DB_HOST, c.DB_NAME, c.DB_USERNAME, c.DB_PASSWORD, c.DB_PORT)
c.DB_HOST, c.DB_NAME, c.DB_PORT,
c.DB_USERNAME, c.DB_PASSWORD)
nm = NodeMonitor(node_provider_db, email_bot, slack_bot, telegram_bot)


Expand Down

0 comments on commit f05fbe8

Please sign in to comment.