renamed pow to onionrproofs since pow is a taken keyword

This commit is contained in:
Kevin Froman 2018-02-27 19:44:00 -06:00
parent 32b8d9c1a7
commit 5564d540cb
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
2 changed files with 1 additions and 1 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/>.
'''
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):