From 5564d540cbdbef29a5555842cd5af43a8fe556b1 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Tue, 27 Feb 2018 19:44:00 -0600 Subject: [PATCH] renamed pow to onionrproofs since pow is a taken keyword --- onionr/communicator.py | 2 +- onionr/{pow.py => onionrproofs.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename onionr/{pow.py => onionrproofs.py} (100%) diff --git a/onionr/communicator.py b/onionr/communicator.py index 54e9c512..3fe60169 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -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 . ''' import sqlite3, requests, hmac, hashlib, time, sys, os, math, logger, urllib.parse -import core, onionrutils, onionrcrypto, pow, btc +import core, onionrutils, onionrcrypto, onionrproofs, btc class OnionrCommunicate: def __init__(self, debug, developmentMode): diff --git a/onionr/pow.py b/onionr/onionrproofs.py similarity index 100% rename from onionr/pow.py rename to onionr/onionrproofs.py