-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: Fix dependencies, from monorepo merge #1463
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #1463 +/- ##
========================================
Coverage 63.18% 63.18%
========================================
Files 118 118
Lines 6554 6554
========================================
Hits 4141 4141
Misses 2144 2144
Partials 269 269 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
[the | ||
specification](https://github.com/tendermint/abci/blob/master/specification.md) | ||
specification](https://github.com/tendermint/tendermint/abci/blob/master/specification.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
404 but i'll fix in tendermint/tendermint#1847 because it won't be at ^ this location
link should be REPO/blob/master/abci/spec
|
||
## Slashing | ||
|
||
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/abci/blob/develop/types/types.proto#L259), so the validator an be accordingly punished. | ||
Evidence](https://github.com/tendermint/tendermint/abci/blob/develop/types/types.proto#L259), so the validator an be accordingly punished. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same deal:
https://github.com/tendermint/tendermint/blob/develop/abci/types/types.proto#L259
is the correct link
@@ -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 <https://github.com/tendermint/go-crypto>`__. The Merkle tree | |||
library <https://github.com/tendermint/tendermint/crypto>`__. The Merkle tree |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
repo/blob/master/crypto
@@ -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/abci/blob/master/types/types.proto#L165). | |||
Result is motivated by the corresponding [ABCI result](https://github.com/tendermint/tendermint/abci/blob/master/types/types.proto#L165). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ibid
@@ -409,11 +409,11 @@ 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/abci) that | |||
ABCI](https://github.com/tendermint/tendermint/abci) that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
404, need blob/master in there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i stopped commenting on all the broken links but these should be fixed
Closes #1456
Updated all code comments where relevantWrote testsUpdated CHANGELOG.mdUpdated Gaia/Examples