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
"""A very simple command line tool to import utxos to be used
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 json
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
'''

3
scripts/joinmarketd.py

@ -1,5 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
import sys
from twisted.internet import reactor
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

2
scripts/sendpayment.py

@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
"""
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
of utxos from one (thus giving more potential commitments
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
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 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
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 jmclient import YieldGeneratorBasic, ygmain

Loading…
Cancel
Save