Move some more IRC configuration to network_config

This commit is contained in:
moneromooo 2015-01-28 13:44:56 +00:00
parent 00b742445e
commit 0e144e14b3
2 changed files with 12 additions and 13 deletions

View file

@ -12,13 +12,6 @@
tipbot_name = "monero-testnet-tipbot"
irc_network = 'irc.freenode.net'
irc_port = 6697
irc_send_delay = 0.4
irc_welcome_line = 'Welcome to the freenode Internet Relay Chat Network'
irc_channels = ['#txtptest000']
irc_timeout_seconds = 600
redis_host="127.0.0.1"
redis_port=7777
@ -49,10 +42,13 @@ network_config = {
'host': 'irc.freenode.net',
'port': 6697,
'login': tipbot_name,
'delay': irc_send_delay,
'delay': 0.4,
'ssl': True,
'sasl': True,
'sasl_name': 'monero-tipbot',
'welcome_line': 'Welcome to the freenode Internet Relay Chat Network',
'timeout_seconds': 600,
'channels': ['#txtptest000'],
},
}