Skip to content

Commit

Permalink
rpc-tests: remove python-bitcoinrpc directory
Browse files Browse the repository at this point in the history
place authproxy.py at same level as other utility classes
  • Loading branch information
jonasschnelli committed May 21, 2015
1 parent a85b2e2 commit 7b7f258
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 23 deletions.
2 changes: 0 additions & 2 deletions qa/rpc-tests/keypool.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_framework/python-bitcoinrpc"))

import json
import shutil
import subprocess
import tempfile
import traceback

from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from test_framework.util import *


Expand Down
1 change: 0 additions & 1 deletion qa/rpc-tests/rpcbind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

import json
import shutil
Expand Down
File renamed without changes.

This file was deleted.

Empty file.
15 changes: 0 additions & 15 deletions qa/rpc-tests/test_framework/python-bitcoinrpc/setup.py

This file was deleted.

3 changes: 1 addition & 2 deletions qa/rpc-tests/test_framework/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@
# 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"))

import shutil
import tempfile
import traceback

from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from authproxy import AuthServiceProxy, JSONRPCException
from util import *


Expand Down
3 changes: 1 addition & 2 deletions qa/rpc-tests/test_framework/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -18,7 +17,7 @@
import time
import re

from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from authproxy import AuthServiceProxy, JSONRPCException
from util import *

def p2p_port(n):
Expand Down

0 comments on commit 7b7f258

Please sign in to comment.