Migrate from old dev-enabled to devmode

This commit is contained in:
Arinerron 2018-03-02 23:37:46 -08:00
parent c2db59ba8b
commit cc4687021a
No known key found for this signature in database
GPG Key ID: 99383627861C62F0
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ and code to operate as a daemon, getting commands from the command queue databas
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
''' '''
import sqlite3, requests, hmac, hashlib, time, sys, os, math, logger, urllib.parse import sqlite3, requests, hmac, hashlib, time, sys, os, math, logger, urllib.parse
import core, onionrutils, onionrcrypto, onionrproofs, btc import core, onionrutils, onionrcrypto, onionrproofs, btc, config
class OnionrCommunicate: class OnionrCommunicate:
def __init__(self, debug, developmentMode): def __init__(self, debug, developmentMode):
@ -41,7 +41,7 @@ class OnionrCommunicate:
except: except:
logger.fatal('Failed to start Bitcoin Node, exiting...') logger.fatal('Failed to start Bitcoin Node, exiting...')
exit(1) exit(1)
blockProcessTimer = 0 blockProcessTimer = 0
blockProcessAmount = 5 blockProcessAmount = 5
heartBeatTimer = 0 heartBeatTimer = 0
@ -218,7 +218,7 @@ class OnionrCommunicate:
shouldRun = False shouldRun = False
debug = True debug = True
developmentMode = False developmentMode = False
if os.path.exists('dev-enabled'): if logger.get('devmode', True):
developmentMode = True developmentMode = True
try: try:
if sys.argv[1] == 'run': if sys.argv[1] == 'run':

View File