aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/test_framework/util.py
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-05-21 21:22:22 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-05-21 21:22:22 +0200
commit7b7f258396432b6b4a0c111b06e34be03e42b000 (patch)
treecf609391bc07a61daa8cff715a62934a32aa8241 /qa/rpc-tests/test_framework/util.py
parenta85b2e221ba52e6885d609f2fcecb30a2274cfb3 (diff)
downloadbitcoin-7b7f258396432b6b4a0c111b06e34be03e42b000.tar.xz
rpc-tests: remove python-bitcoinrpc directory
place authproxy.py at same level as other utility classes
Diffstat (limited to 'qa/rpc-tests/test_framework/util.py')
-rw-r--r--qa/rpc-tests/test_framework/util.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py
index 997bbcc373..c236ec2602 100644
--- a/qa/rpc-tests/test_framework/util.py
+++ b/qa/rpc-tests/test_framework/util.py
@@ -8,7 +8,6 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
-sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))
from decimal import Decimal, ROUND_DOWN
import json
@@ -18,7 +17,7 @@ import subprocess
import time
import re
-from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
+from authproxy import AuthServiceProxy, JSONRPCException
from util import *
def p2p_port(n):