From 65501997518b59de12e35cbc11017aa54d162164 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 3 Oct 2017 23:39:28 -0400 Subject: [PATCH] [docs] minor fixes from review [ci skip] --- docs/app-development.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app-development.rst b/docs/app-development.rst index 84654391..770572e1 100644 --- a/docs/app-development.rst +++ b/docs/app-development.rst @@ -146,7 +146,7 @@ Most of the examples below are from `dummy application `__, which is a part of the abci repo. `persistent_dummy application `__ -application is used to show ``BeginBlock``, ``EndBlock`` and ``InitChain`` +is used to show ``BeginBlock``, ``EndBlock`` and ``InitChain`` example implementations. Blockchain Protocol @@ -254,7 +254,7 @@ Commit, or there will be deadlock. Note also that all remaining transactions in the mempool are replayed on the mempool connection (CheckTx) following a commit. -The app should respond with a byte array, which is the deterministic +The app should respond to the Commit request with a byte array, which is the deterministic state root of the application. It is included in the header of the next block. It can be used to provide easily verified Merkle-proofs of the state of the application.