mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 09:53:47 +01:00
[qa] mininode: fail on send_message instead of silent return
This commit is contained in:
parent
66db2d62d5
commit
facb6c0bf8
@ -1315,7 +1315,7 @@ class NodeConn(asyncore.dispatcher):
|
|||||||
|
|
||||||
def send_message(self, message, pushbuf=False):
|
def send_message(self, message, pushbuf=False):
|
||||||
if self.state != "connected" and not pushbuf:
|
if self.state != "connected" and not pushbuf:
|
||||||
return
|
raise IOError('Not connected, no pushbuf')
|
||||||
self.show_debug_msg("Send %s" % repr(message))
|
self.show_debug_msg("Send %s" % repr(message))
|
||||||
command = message.command
|
command = message.command
|
||||||
data = message.serialize()
|
data = message.serialize()
|
||||||
|
Loading…
Reference in New Issue
Block a user