예제 #1
0
 def send_GetChain(self, parents=[], count=1):
     assert len(parents) <= MAX_GET_CHAIN_SEND_HASHES
     assert count <= MAX_GET_CHAIN_ASK_BLOCKS
     self.send_packet(packeter.dump_GetChain(parents, count))
예제 #2
0
파일: node.py 프로젝트: elkingtowa/azove
 def send_GetChain(self, parents=[], count=1):
     self.send_packet(packeter.dump_GetChain(parents, count))
예제 #3
0
파일: peer.py 프로젝트: VIAAC/pyethereum
 def send_GetChain(self, parents=[], count=1):
     self.send_packet(packeter.dump_GetChain(parents, count))
예제 #4
0
 def send_GetChain(self):
     self.send_packet(packeter.dump_GetChain())
예제 #5
0
 def send_GetChain(self, request_data):
     self.send_packet(packeter.dump_GetChain(request_data))