![]() |
Dash Core
0.12.2.1
P2P Digital Currency
|
Variables | |
int | port = 28332 |
zmqContext = zmq.Context() | |
zmqSubSocket = zmqContext.socket(zmq.SUB) | |
msg = zmqSubSocket.recv_multipart() | |
topic = str(msg[0].decode("utf-8")) | |
body = msg[1] | |
string | sequence = "Unknown"; |
msgSequence = struct.unpack('<I', msg[-1])[-1] | |
zmq_sub.body = msg[1] |
Definition at line 24 of file zmq_sub.py.
zmq_sub.msg = zmqSubSocket.recv_multipart() |
Definition at line 22 of file zmq_sub.py.
Referenced by addmultisigaddress(), c256(), c512(), CNode.CNode(), createmultisig(), DebugMessageHandler(), GUIUtil.formatBitcoinURI(), PaymentServer.handleURIConnection(), libevent_log_cb(), PaymentServer.netRequestFinished(), ProcessMessage(), ProcessMessages(), CConnman.PushMessageWithVersionAndFlag(), random_sign(), CNode.ReceiveMsgBytes(), run_context_tests(), secp256k1_ecdsa_sign(), secp256k1_ecdsa_sign_recoverable(), MasternodeList.StartAlias(), MasternodeList.StartAll(), test_ecdsa_edge_cases(), test_ecdsa_end_to_end(), test_ecdsa_recovery_end_to_end(), test_ecdsa_sign_verify(), test_schnorr_threshold(), CWallet.Verify(), and zmq_send_multipart().
zmq_sub.msgSequence = struct.unpack('<I', msg[-1])[-1] |
Definition at line 28 of file zmq_sub.py.
int zmq_sub.port = 28332 |
Definition at line 8 of file zmq_sub.py.
Referenced by CallRPC(), ConnectSocketByName(), ConnectThroughProxy(), HTTPRequest.GetPeer(), HTTPBindAddresses(), Lookup(), CMasternodeConfig.read(), and Socks5().
zmq_sub.sequence = "Unknown"; |
Definition at line 25 of file zmq_sub.py.
zmq_sub.topic = str(msg[0].decode("utf-8")) |
Definition at line 23 of file zmq_sub.py.
zmq_sub.zmqContext = zmq.Context() |
Definition at line 10 of file zmq_sub.py.
zmq_sub.zmqSubSocket = zmqContext.socket(zmq.SUB) |
Definition at line 11 of file zmq_sub.py.