Update install.md

This commit is contained in:
tecnovert 2019-07-27 22:34:40 +02:00
parent 682fe578a7
commit 4972f1f60f
No known key found for this signature in database
GPG Key ID: 8ED6D8750C4E3F93
3 changed files with 13 additions and 2 deletions

View File

@ -22,10 +22,10 @@ Not ready for real-world use.
Features still required (of many): Features still required (of many):
- Cached addresses must be regenerated after use. - Cached addresses must be regenerated after use.
- Option to lookup data from public explorers / nodes. - Option to lookup data from public explorers / nodes.
- Load active bids from db at startup
- Ability to swap coin-types without running nodes for all coin-types - Ability to swap coin-types without running nodes for all coin-types
- More swap protocols - More swap protocols
- Method to load mnemonic into Particl. - Method to load mnemonic into Particl.
- Load seeds for other wallets from same mnemonic.
- COIN must be defined per coin. - COIN must be defined per coin.

View File

@ -59,3 +59,14 @@ To run in a different directory and on testnet:
$ export PYTHONPATH=$(pwd) $ export PYTHONPATH=$(pwd)
$ python bin/basicswap-prepare.py $ python bin/basicswap-prepare.py
$ python bin/basicswap-run.py $ python bin/basicswap-run.py
## OSX
$ brew install python git protobuf
$ git clone https://github.com/tecnovert/basicswap.git
$ cd basicswap
$ protoc -I=basicswap --python_out=basicswap basicswap/messages.proto
$ pip3 install .
$ basicswap-prepare
$ basicswap-run

View File

@ -63,7 +63,7 @@ class Test(unittest.TestCase):
thread = threading.Thread(target=self.run_thread) thread = threading.Thread(target=self.run_thread)
thread.start() thread.start()
logger.log('TODO') logger.warning('TODO')
time.sleep(5) time.sleep(5)
runSystem.swap_client.stopRunning() runSystem.swap_client.stopRunning()