diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-05-02 13:58:10 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-05-18 15:29:20 +0200 |
commit | 3e875b1befad5ed5dbd2736c9befccd32d67721c (patch) | |
tree | d763492ee31ddb41e1d9db7fa341556e262305f0 /qa/rpc-tests | |
parent | 00706a54362a04cd8938f101359c2f5dfaa294e5 (diff) |
pull-tester/rpc-tests.sh: allow passing throug of arguments
Diffstat (limited to 'qa/rpc-tests')
-rwxr-xr-x | qa/rpc-tests/rawtransactions.py | 4 | ||||
-rwxr-xr-x | qa/rpc-tests/signrawtransactions.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/qa/rpc-tests/rawtransactions.py b/qa/rpc-tests/rawtransactions.py index 3d80c97d74..1378514c84 100755 --- a/qa/rpc-tests/rawtransactions.py +++ b/qa/rpc-tests/rawtransactions.py @@ -8,8 +8,8 @@ # that spend (directly or indirectly) coinbase transactions. # -from test_framework import BitcoinTestFramework -from util import * +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import * from pprint import pprint from time import sleep diff --git a/qa/rpc-tests/signrawtransactions.py b/qa/rpc-tests/signrawtransactions.py index 943634bd19..d51d6ee610 100755 --- a/qa/rpc-tests/signrawtransactions.py +++ b/qa/rpc-tests/signrawtransactions.py @@ -3,8 +3,8 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -from test_framework import BitcoinTestFramework -from util import * +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import * class SignRawTransactionsTest(BitcoinTestFramework): |