pub trait ContextSetters {
type Tx: Transaction;
type Block: Block;
// Required methods
fn set_tx(&mut self, tx: Self::Tx);
fn set_block(&mut self, block: Self::Block);
}
pub trait ContextSetters {
type Tx: Transaction;
type Block: Block;
// Required methods
fn set_tx(&mut self, tx: Self::Tx);
fn set_block(&mut self, block: Self::Block);
}