diff options
| author | Gavin Andresen <[email protected]> | 2014-12-05 20:08:11 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-12-05 20:10:54 -0500 |
| commit | 4383319e4e0cb96818d2be734f7280181daac9fa (patch) | |
| tree | 2aa5310da1cf33e910ef36fa05760899aef88394 | |
| parent | Merge pull request #5181 (diff) | |
| parent | Fix missing python2 in rpc-tests (diff) | |
| download | discoin-4383319e4e0cb96818d2be734f7280181daac9fa.tar.xz discoin-4383319e4e0cb96818d2be734f7280181daac9fa.zip | |
Merge pull request #5432
db0916b Fix missing python2 in rpc-tests (Matt Corallo)
Signed-off-by: Gavin Andresen <[email protected]>
| -rwxr-xr-x | qa/rpc-tests/mempool_resurrect_test.py | 2 | ||||
| -rwxr-xr-x | qa/rpc-tests/mempool_spendcoinbase.py | 2 | ||||
| -rwxr-xr-x | qa/rpc-tests/rest.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/mempool_resurrect_test.py b/qa/rpc-tests/mempool_resurrect_test.py index 907cbf98f..81db812bf 100755 --- a/qa/rpc-tests/mempool_resurrect_test.py +++ b/qa/rpc-tests/mempool_resurrect_test.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright (c) 2014 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/qa/rpc-tests/mempool_spendcoinbase.py b/qa/rpc-tests/mempool_spendcoinbase.py index 0fc7c8577..f0b34f290 100755 --- a/qa/rpc-tests/mempool_spendcoinbase.py +++ b/qa/rpc-tests/mempool_spendcoinbase.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright (c) 2014 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/qa/rpc-tests/rest.py b/qa/rpc-tests/rest.py index 2d301bf4f..c62a96fbb 100755 --- a/qa/rpc-tests/rest.py +++ b/qa/rpc-tests/rest.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright (c) 2014 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. |