Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Spit and polish
  • Loading branch information
rozhkovdmitrii committed Apr 10, 2022
commit a3927982238423d1538d8d3ca0c49be269d95cf6
2 changes: 1 addition & 1 deletion proxy/common_neon/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#TODO: move it out from here
from ...environment import EVM_LOADER_ID

from ...common_neon.eth_proto import Trx as EthTx
from ..eth_proto import Trx as EthTx


def str_fmt_object(obj):
Expand Down
2 changes: 1 addition & 1 deletion proxy/mempool/mempool_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MemPoolClient(QueueBasedServiceClient):

def __init__(self):
self.info("Construct MemPoolClient")
QueueBasedServiceClient.__init__(self, "localhost", 9091)
QueueBasedServiceClient.__init__(self, self.MEM_POOL_SERVICE_HOST, MemPoolService.MEM_POOL_SERVICE_PORT)

def on_eth_send_raw_transaction(self, eth_trx_signature):
self.invoke("on_eth_send_raw_transaction", eth_trx_hash=eth_trx_signature)