cfxcore/pos/protocol/message/
vote.rsuse crate::{
    pos::{
        consensus::network::ConsensusMsg,
        protocol::sync_protocol::{Context, Handleable},
    },
    sync::Error,
};
use consensus_types::vote_msg::VoteMsg;
use diem_logger::prelude::diem_debug;
use std::mem::discriminant;
impl Handleable for VoteMsg {
    fn handle(self, ctx: &Context) -> Result<(), Error> {
        diem_debug!("on_vote, msg={:?}", &self);
        let peer_address = ctx.get_peer_account_address()?;
        let author = self.vote().author();
        let msg = ConsensusMsg::VoteMsg(Box::new(self));
        ctx.manager
            .consensus_network_task
            .consensus_messages_tx
            .push((author, discriminant(&msg)), (peer_address, msg))?;
        Ok(())
    }
}