From 8747eaac7df4c962d2b4fc35d7926de83463eca5 Mon Sep 17 00:00:00 2001 From: Max Levy <35595512+maxim-levy@users.noreply.github.com> Date: Mon, 20 Aug 2018 11:22:46 +0900 Subject: [PATCH 1/2] A URL to abci-spec.md fixed /docs/abci-spec.md -> /docs/app-dev/abci-spec.md --- docs/sdk/core/app4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdk/core/app4.md b/docs/sdk/core/app4.md index 0724e5e7a8..b6596ef0cf 100644 --- a/docs/sdk/core/app4.md +++ b/docs/sdk/core/app4.md @@ -16,7 +16,7 @@ here we will introduce the other ABCI requests sent by Tendermint, and how we can use them to build more advanced applications. For a more complete depiction of the ABCI and how its used, see [the -specification](https://github.com/tendermint/tendermint/blob/master/docs/abci-spec.md) +specification](https://github.com/tendermint/tendermint/blob/master/docs/app-dev/abci-spec.md) ## InitChain From 459f126e9b1afd6ec2968b269564ab9b2c6ed9f2 Mon Sep 17 00:00:00 2001 From: Max Levy <35595512+maxim-levy@users.noreply.github.com> Date: Mon, 20 Aug 2018 11:29:03 +0900 Subject: [PATCH 2/2] The URL to abci-spec.md fixed docs/abci-spec.md -> docs/app-dev/abci-spec.md --- docs/sdk/core/app1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdk/core/app1.md b/docs/sdk/core/app1.md index 54121d05bf..a2978ffb08 100644 --- a/docs/sdk/core/app1.md +++ b/docs/sdk/core/app1.md @@ -469,7 +469,7 @@ Tendermint consensus engine. It would be initialized by a Genesis file, and it would be driven by blocks of transactions committed by the underlying Tendermint consensus. We'll talk more about ABCI and how this all works a bit later, but feel free to check the -[specification](https://github.com/tendermint/tendermint/blob/master/docs/abci-spec.md). +[specification](https://github.com/tendermint/tendermint/blob/master/docs/app-dev/abci-spec.md). We'll also see how to connect our app to a complete suite of components for running and using a live blockchain application.