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

fix lib import #3

Closed
wants to merge 6 commits into from
Closed
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.pyc
*.o
*.so
config.json
tags
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Dependencies (Debian):

python-obelisk from https://github.com/darkwallet/python-obelisk

# pip install tornado
# pip install tornado pyellyptic

$ cd gateway/txrad/
$ cd daemon/txrad/
$ make

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ The darkwallet gateway is a daemon providing the following services to wallets:
Generally the gateway tries to provide all services a wallet may need acting as a proxy to mask the user address so as to not compromise it in many services.


Install:
-------------

see INSTALL file

Running:
-----------

Expand Down
2 changes: 1 addition & 1 deletion daemon/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from tornado.platform.twisted import TwistedIOLoop
from twisted.internet import reactor
TwistedIOLoop().install()
from crypto2crypto import CryptoTransportLayer
from lib.crypto2crypto import CryptoTransportLayer

from tornado.options import define, options, parse_command_line

Expand Down
Empty file added daemon/lib/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.