diff --git a/.gitignore b/.gitignore index 1a9d961..4ad1a0f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *.pyc *.o *.so +config.json +tags diff --git a/INSTALL b/INSTALL index 289c5fe..0847e65 100644 --- a/INSTALL +++ b/INSTALL @@ -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 diff --git a/README.md b/README.md index 847b3bf..d95ce5e 100644 --- a/README.md +++ b/README.md @@ -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: ----------- diff --git a/daemon/gateway.py b/daemon/gateway.py index 96c075c..4c2d6ea 100755 --- a/daemon/gateway.py +++ b/daemon/gateway.py @@ -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 diff --git a/daemon/lib/__init__.py b/daemon/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/crypto2crypto.py b/daemon/lib/crypto2crypto.py similarity index 100% rename from lib/crypto2crypto.py rename to daemon/lib/crypto2crypto.py diff --git a/lib/p2p.py b/daemon/lib/p2p.py similarity index 100% rename from lib/p2p.py rename to daemon/lib/p2p.py