chore: move from relative links to git links (#11238)

* move from relative links to git links

* permalinks
This commit is contained in:
Marko 2022-02-21 13:34:28 +01:00 committed by GitHub
parent 850a0938fa
commit 2adb1cb49d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -10,12 +10,12 @@ Recovery middleware is used to add custom panic recovery for Cosmos SDK applicat
More context could be found in the corresponding [ADR-022](../architecture/adr-022-custom-panic-handling.md).
Implementation could be found in the [recovery.go](../../baseapp/recovery.go) file.
Implementation could be found in the [recovery.go](https://github.com/cosmos/cosmos-sdk/tree/v0.46.0-alpha2/x/auth/middleware/recovery.go) file.
## Interface
```go
type RecoveryHandler func(recoveryObj interface{}) error
type RecoveryHandtree/v0.46.0-alpha2
```
`recoveryObj` is a return value for `recover()` function from the `buildin` Golang package.

View File

@ -226,7 +226,7 @@ When `Store.Iterator()` is called, it does not simply prefix the `Store.prefix`,
`listenkv.Store` is a wrapper `KVStore` which provides state listening capabilities over the underlying `KVStore`.
It is applied automatically by the Cosmos SDK on any `KVStore` whose `StoreKey` is specified during state streaming configuration.
Additional information about state streaming configuration can be found in the [store/streaming/README.md](../../store/streaming/README.md).
Additional information about state streaming configuration can be found in the [store/streaming/README.md](https://github.com/cosmos/cosmos-sdk/tree/v0.46.0-alpha2/store/streaming).
+++ https://github.com/cosmos/cosmos-sdk/blob/v0.44.1/store/listenkv/store.go#L11-L18