use orga::abci::{Application, ABCIStateMachine, MemStore}; use orga::encoding::Decode; use orga::state::Value; use orga::store::Store; use orga::Result; use orga::macros::state; use abci2::messages::abci::*; use failure::bail; struct CounterApp; #[state] struct CounterState { count: Value } impl CounterApp { fn run(&self, store: S, tx: &[u8]) -> Result<()> { if tx.len() != 4 { bail!("Transaction must be exactly 4 bytes"); } let n = u32::decode(tx)?; let mut state: CounterState<_> = store.wrap()?; let count = state.count.get_or_default()?; if n != count { bail!("Incorrect count"); } state.count.set(count + 1)?; Ok(()) } } impl Application for CounterApp { fn deliver_tx(&self, store: S, req: RequestDeliverTx) -> Result { let bytes = req.get_tx(); self.run(store, bytes)?; Ok(Default::default()) } fn check_tx(&self, store: S, req: RequestCheckTx) -> Result { let bytes = req.get_tx(); self.run(store, bytes)?; Ok(Default::default()) } } pub fn main() { let store = MemStore::new(); ABCIStateMachine::new(CounterApp, store) .listen("localhost:26658") .unwrap(); }