Add RPC test for -enforcenodebloom

This commit is contained in:
Jack Grigg
2018-04-03 17:12:46 +01:00
parent 1c82adeb87
commit b77e46fe01
3 changed files with 114 additions and 0 deletions

View File

@@ -1263,6 +1263,22 @@ class msg_reject(object):
% (self.message, self.code, self.reason, self.data)
class msg_filterclear(object):
command = "filterclear"
def __init__(self):
pass
def deserialize(self, f):
pass
def serialize(self):
return ""
def __repr__(self):
return "msg_filterclear()"
# This is what a callback should look like for NodeConn
# Reimplement the on_* functions to provide handling for events
class NodeConnCB(object):