mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
Change shebang to python3 and +x for scripts
This commit is contained in:
parent
5a082a07ed
commit
3876c1cf97
11 changed files with 11 additions and 13 deletions
2
scripts/add-utxo.py
Normal file → Executable file
2
scripts/add-utxo.py
Normal file → Executable file
|
|
@ -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
Normal file → Executable file
2
scripts/convert_old_wallet.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import json
|
||||
import os.path
|
||||
|
|
|
|||
2
scripts/joinmarket-qt.py
Normal file → Executable file
2
scripts/joinmarket-qt.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
from future.utils import iteritems
|
||||
|
||||
'''
|
||||
|
|
|
|||
3
scripts/joinmarketd.py
Normal file → Executable file
3
scripts/joinmarketd.py
Normal file → Executable file
|
|
@ -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
Normal file → Executable file
2
scripts/receive-payjoin.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from optparse import OptionParser
|
||||
|
||||
|
|
|
|||
2
scripts/sendpayment.py
Normal file → Executable file
2
scripts/sendpayment.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
"""
|
||||
A sample implementation of a single coinjoin script,
|
||||
|
|
|
|||
2
scripts/sendtomany.py
Normal file → Executable file
2
scripts/sendtomany.py
Normal file → Executable file
|
|
@ -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
Normal file → Executable file
2
scripts/tumbler.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
from twisted.internet import reactor
|
||||
|
|
|
|||
3
scripts/wallet-tool.py
Normal file → Executable file
3
scripts/wallet-tool.py
Normal file → Executable file
|
|
@ -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
Normal file → Executable file
2
scripts/yg-privacyenhanced.py
Normal file → Executable file
|
|
@ -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
Normal file → Executable file
2
scripts/yield-generator-basic.py
Normal file → Executable file
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from jmbase import jmprint
|
||||
from jmclient import YieldGeneratorBasic, ygmain
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue