tendermint-abci 0.19.0

tendermint-abci provides a simple framework with which to build low-level applications on top of Tendermint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Trivial ABCI echo application

use crate::Application;

/// Trivial echo application, mainly for testing purposes.
#[derive(Clone)]
pub struct EchoApp;

impl Default for EchoApp {
    fn default() -> Self {
        Self {}
    }
}

impl Application for EchoApp {}