Browse Source

Merge #524: Change shebang to python3 and +x for scripts

e536eb1 Add wrapper shell script for JoinMarketQt (Kristaps Kaupe)
3876c1c Change shebang to python3 and +x for scripts (Kristaps Kaupe)
master
Adam Gibson 6 years ago
parent
commit
839357897c
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 2
      scripts/add-utxo.py
  2. 2
      scripts/convert_old_wallet.py
  3. 2
      scripts/joinmarket-qt.py
  4. 5
      scripts/joinmarket-qt.sh
  5. 3
      scripts/joinmarketd.py
  6. 2
      scripts/receive-payjoin.py
  7. 2
      scripts/sendpayment.py
  8. 2
      scripts/sendtomany.py
  9. 2
      scripts/tumbler.py
  10. 3
      scripts/wallet-tool.py
  11. 2
      scripts/yg-privacyenhanced.py
  12. 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
'''

5
scripts/joinmarket-qt.sh

@ -0,0 +1,5 @@
#!/usr/bin/env bash
cd $(dirname "$0")/.. && \
source jmvenv/bin/activate && \
cd scripts && \
python3 joinmarket-qt.py

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