From 557e652530c0880702e1a23ac9c9590be7113b38 Mon Sep 17 00:00:00 2001 From: Zach Ramsay Date: Wed, 4 Jul 2018 09:23:01 -0400 Subject: [PATCH] docs: fix dead links, closes #1508 --- docs/core/app1.md | 6 +++--- docs/core/app4.md | 2 +- docs/spec/slashing/end_block.md | 2 +- examples/README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/core/app1.md b/docs/core/app1.md index 91e75966a..ba7f02a8d 100644 --- a/docs/core/app1.md +++ b/docs/core/app1.md @@ -189,7 +189,7 @@ docs](https://godoc.org/github.com/cosmos/cosmos-sdk/types#Context) for more det ### Result Handler takes a Context and Msg and returns a Result. -Result is motivated by the corresponding [ABCI result](https://github.com/tendermint/tendermint/abci/blob/master/types/types.proto#L165). +Result is motivated by the corresponding [ABCI result](https://github.com/tendermint/tendermint/blob/master/abci/types/types.proto#L165). It contains return values, error information, logs, and meta data about the transaction: ```go @@ -409,7 +409,7 @@ func txDecoder(txBytes []byte) (sdk.Tx, sdk.Error) { Finally, we stitch it all together using the `BaseApp`. The BaseApp is an abstraction over the [Tendermint -ABCI](https://github.com/tendermint/tendermint/abci) that +ABCI](https://github.com/tendermint/tendermint/tree/master/abci) that simplifies application development by handling common low-level concerns. It serves as the mediator between the two key components of an SDK app: the store and the message handlers. The BaseApp implements the @@ -473,7 +473,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/abci/blob/master/specification.md). +[specification](https://github.com/tendermint/tendermint/blob/master/docs/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. diff --git a/docs/core/app4.md b/docs/core/app4.md index d7226b466..0724e5e7a 100644 --- a/docs/core/app4.md +++ b/docs/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/abci/blob/master/specification.md) +specification](https://github.com/tendermint/tendermint/blob/master/docs/abci-spec.md) ## InitChain diff --git a/docs/spec/slashing/end_block.md b/docs/spec/slashing/end_block.md index e923fd844..3eec27372 100644 --- a/docs/spec/slashing/end_block.md +++ b/docs/spec/slashing/end_block.md @@ -6,7 +6,7 @@ Tendermint blocks can include [Evidence](https://github.com/tendermint/tendermint/blob/develop/docs/spec/blockchain/blockchain.md#evidence), which indicates that a validator committed malicious behaviour. The relevant information is forwarded to the application as [ABCI -Evidence](https://github.com/tendermint/tendermint/abci/blob/develop/types/types.proto#L259), so the validator an be accordingly punished. +Evidence](https://github.com/tendermint/tendermint/blob/develop/abci/types/types.proto#L259), so the validator an be accordingly punished. For some `evidence` to be valid, it must satisfy: diff --git a/examples/README.md b/examples/README.md index 3f45e025c..a8a483ee6 100644 --- a/examples/README.md +++ b/examples/README.md @@ -256,7 +256,7 @@ Accounts are serialized and stored in a Merkle tree under the key Typically, the address of the account is the 20-byte ``RIPEMD160`` hash of the public key, but other formats are acceptable as well, as defined in the `Tendermint crypto -library `__. The Merkle tree +library `__. The Merkle tree used in Basecoin is a balanced, binary search tree, which we call an `IAVL tree `__.