pub trait ChainProposalMethodsExt {
    // Required methods
    fn query_upgrade_proposal_height(
        &self,
        grpc_address: &Uri,
        proposal_id: u64
    ) -> Result<u64, Error>;
    fn vote_proposal(&self, fees: &str) -> Result<(), Error>;
}

Required Methods§

source

fn query_upgrade_proposal_height( &self, grpc_address: &Uri, proposal_id: u64 ) -> Result<u64, Error>

source

fn vote_proposal(&self, fees: &str) -> Result<(), Error>

Implementors§