Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update master.py #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bitcoin_instagram_frontend/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions bitcoin_instagram_frontend/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down