diff --git a/bitcoin_instagram_frontend/client.py b/bitcoin_instagram_frontend/client.py index 9ac5ee9..74fc79e 100644 --- a/bitcoin_instagram_frontend/client.py +++ b/bitcoin_instagram_frontend/client.py @@ -6,8 +6,8 @@ #import from the 21 Developer Library from two1.commands.config import Config -from two1.lib.wallet import Wallet -from two1.lib.bitrequests import BitTransferRequests +from two1.wallet import Wallet +from two1.bitrequests import BitTransferRequests #set up bitrequest client for BitTransfer requests wallet = Wallet() diff --git a/bitcoin_instagram_frontend/server.py b/bitcoin_instagram_frontend/server.py index a0236f2..28da835 100644 --- a/bitcoin_instagram_frontend/server.py +++ b/bitcoin_instagram_frontend/server.py @@ -14,8 +14,8 @@ from flask.ext.basicauth import BasicAuth #Import from the 21 Developer Library -from two1.lib.wallet import Wallet -from two1.lib.bitserv.flask import Payment +from two1.wallet import Wallet +from two1.bitserv.flask import Payment app = Flask(__name__, static_folder='static', template_folder='templates') wallet = Wallet()