function handleBlockResponse ({ sync }: P2pInterface, peer: PeerInterface, message: BlockResponse): void {
  // self.l.debug(() => [peer.shortId, 'BlockResponse', JSON.stringify(message)]);

  sync.queueBlocks(peer, message);
}