Browse Source

Change shebang to python3 and +x for scripts

master
Kristaps Kaupe 6 years ago
parent
commit
3876c1cf97
  1. 2
      scripts/add-utxo.py
  2. 2
      scripts/convert_old_wallet.py
  3. 2
      scripts/joinmarket-qt.py
  4. 3
      scripts/joinmarketd.py
  5. 2
      scripts/receive-payjoin.py
  6. 2
      scripts/sendpayment.py
  7. 2
      scripts/sendtomany.py
  8. 2
      scripts/tumbler.py
  9. 3
      scripts/wallet-tool.py
  10. 2
      scripts/yg-privacyenhanced.py
  11. 2
      scripts/yield-generator-basic.py

2
scripts/add-utxo.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
from future.utils import iteritems from future.utils import iteritems
"""A very simple command line tool to import utxos to be used """A very simple command line tool to import utxos to be used
as commitments into joinmarket's commitments.json file, allowing as commitments into joinmarket's commitments.json file, allowing

2
scripts/convert_old_wallet.py

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import json import json
import os.path import os.path

2
scripts/joinmarket-qt.py

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from future.utils import iteritems from future.utils import iteritems
''' '''

3
scripts/joinmarketd.py

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

2
scripts/receive-payjoin.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
from optparse import OptionParser from optparse import OptionParser

2
scripts/sendpayment.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
""" """
A sample implementation of a single coinjoin script, A sample implementation of a single coinjoin script,

2
scripts/sendtomany.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
"""A simple command line tool to create a bunch """A simple command line tool to create a bunch
of utxos from one (thus giving more potential commitments of utxos from one (thus giving more potential commitments
for a Joinmarket user, although of course it may be useful for a Joinmarket user, although of course it may be useful

2
scripts/tumbler.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
import sys import sys
from twisted.internet import reactor from twisted.internet import reactor

3
scripts/wallet-tool.py

@ -1,5 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
from jmbase import jmprint from jmbase import jmprint
from jmclient import wallet_tool_main from jmclient import wallet_tool_main

2
scripts/yg-privacyenhanced.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
from future.utils import iteritems from future.utils import iteritems
import random import random

2
scripts/yield-generator-basic.py

@ -1,4 +1,4 @@
#! /usr/bin/env python #!/usr/bin/env python3
from jmbase import jmprint from jmbase import jmprint
from jmclient import YieldGeneratorBasic, ygmain from jmclient import YieldGeneratorBasic, ygmain

Loading…
Cancel
Save