diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-02 23:23:29 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-02 23:23:29 +0200 |
| commit | 56dc70439f4a5cfeec3c49609229d973349e5c8f (patch) | |
| tree | 963dcea2b7d4c304e95764556a12d4bdeb800afd | |
| parent | Merge pull request #6310 (diff) | |
| download | discoin-56dc70439f4a5cfeec3c49609229d973349e5c8f.tar.xz discoin-56dc70439f4a5cfeec3c49609229d973349e5c8f.zip | |
tests: fix txn_clone.py (retry)
There was a stale .pyc file around from before the move. This should
catch all missing modules and finally fix the travis build.
| -rwxr-xr-x | qa/rpc-tests/txn_clone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/txn_clone.py b/qa/rpc-tests/txn_clone.py index 08473e6b5..0d276ecc9 100755 --- a/qa/rpc-tests/txn_clone.py +++ b/qa/rpc-tests/txn_clone.py @@ -10,7 +10,7 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.authproxy import AuthServiceProxy, JSONRPCException from decimal import Decimal -from util import * +from test_framework.util import * import os import shutil |