From 5d673ecf314e27c57b69e7882921914a2eb5749a Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Sun, 12 Feb 2017 18:38:10 -0800 Subject: [PATCH] Fix comment for BeginBlock hash --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c002b1416..11d790f40 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ ABCI requests/responses are simple Protobuf messages. Check out the [schema fil #### BeginBlock * __Arguments__: - * `Hash ([]byte)`: The block height that is starting + * `Hash ([]byte)`: The block's hash. This can be derived from the block header. * `Header (struct{})`: The block header * __Usage__:
Signals the beginning of a new block. Called prior to any DeliverTxs. The header is expected to at least contain the Height.