Merge remote-tracking branch 'origin/paul-gossip-test' into validator-enhancements

This commit is contained in:
Age Manning 2019-04-01 15:25:49 +11:00
commit c117659b2d
No known key found for this signature in database
GPG Key ID: 05EED64B79E06A93

View File

@ -582,7 +582,23 @@ impl SimpleSync {
); );
match self.chain.process_block(block.clone()) { match self.chain.process_block(block.clone()) {
Ok(BlockProcessingOutcome::InvalidBlock(InvalidBlock::ParentUnknown)) => { Ok(BlockProcessingOutcome::InvalidBlock(InvalidBlock::ParentUnknown)) => {
// get the parent. // The block was valid and we processed it successfully.
debug!(
self.log, "NewGossipBlock";
"msg" => "parent block unknown",
"parent_root" => format!("{}", block.previous_block_root),
"peer" => format!("{:?}", peer_id),
);
// Send a hello to learn of the clients best slot so we can then sync the require
// parent(s).
network.send_rpc_request(
peer_id.clone(),
RPCRequest::Hello(self.chain.hello_message()),
);
// Forward the block onto our peers.
//
// Note: this may need to be changed if we decide to only forward blocks if we have
// all required info.
true true
} }
Ok(BlockProcessingOutcome::InvalidBlock(InvalidBlock::FutureSlot { Ok(BlockProcessingOutcome::InvalidBlock(InvalidBlock::FutureSlot {