refactoring for wownero

This commit is contained in:
lza_menace 2020-08-17 23:41:41 -07:00
parent 324fb71587
commit 026992a812
11 changed files with 19 additions and 19 deletions

View file

@ -10,10 +10,10 @@ from monero.transaction import Transaction
from .base import JSONTestCase
class JSONRPCDaemonTestCase(JSONTestCase):
jsonrpc_url = 'http://127.0.0.1:18081/json_rpc'
mempool_url = 'http://127.0.0.1:18081/get_transaction_pool'
transactions_url = 'http://127.0.0.1:18081/get_transactions'
sendrawtransaction_url = 'http://127.0.0.1:18081/sendrawtransaction'
jsonrpc_url = 'http://127.0.0.1:34568/json_rpc'
mempool_url = 'http://127.0.0.1:34568/get_transaction_pool'
transactions_url = 'http://127.0.0.1:34568/get_transactions'
sendrawtransaction_url = 'http://127.0.0.1:34568/sendrawtransaction'
data_subdir = 'test_jsonrpcdaemon'
def setUp(self):