Browse Source

Merge #564: Add python shebangs to joinmarketd.py and wallet-tool.py

c8d10e5 Add python shebangs to joinmarketd.py and wallet-tool.py (nixbitcoin)
master
Adam Gibson 6 years ago
parent
commit
e068f61e1f
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 2
      scripts/joinmarketd.py
  2. 3
      scripts/wallet-tool.py

2
scripts/joinmarketd.py

@ -1,3 +1,5 @@
#! /usr/bin/env python
import sys
from twisted.internet import reactor
from twisted.python.log import startLogging

3
scripts/wallet-tool.py

@ -1,6 +1,7 @@
#! /usr/bin/env python
from jmbase import jmprint
from jmclient import wallet_tool_main
if __name__ == "__main__":
jmprint(wallet_tool_main("wallets"), "success")
jmprint(wallet_tool_main("wallets"), "success")

Loading…
Cancel
Save