pub trait BlockChainReset {
    fn reset(&self, num: u32) -> Result<(), String>;
}
Expand description

resets the blockchain

Required methods

reset to best_block - n

Implementors