1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! ABCI requests and request data.
//!
// IMPORTANT NOTE ON DOCUMENTATION:
//
// The documentation for each request type is adapted from the ABCI Methods and
// Types spec document. However, the same logical request may appear three
// times, as a struct with the request data, as a Request variant, and as a
// CategoryRequest variant.
//
// To avoid duplication, this documentation is stored in the doc/ folder in
// individual .md files, which are pasted onto the relevant items using #[doc =
// include_str!(...)].
//
// This is also why certain submodules have #[allow(unused)] imports to bring
// items into scope for doc links, rather than changing the doc links -- it
// allows the doc comments to be copied without editing.
// bring into scope for doc links
use Snapshot;
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub use ApplySnapshotChunk;
pub use BeginBlock;
pub use ;
pub use DeliverTx;
pub use Echo;
pub use EndBlock;
pub use ExtendVote;
pub use FinalizeBlock;
pub use Info;
pub use InitChain;
pub use LoadSnapshotChunk;
pub use OfferSnapshot;
pub use PrepareProposal;
pub use ProcessProposal;
pub use Query;
pub use SetOption;
pub use VerifyVoteExtension;