Skip to content
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

Fixing markdown link #2924

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/apps/interchain-accounts/legacy/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino

As described above, the Interchain Accounts application module is structured to support the ability of exclusively enabling controller or host functionality.
This can be achieved by simply omitting either controller or host `Keeper` from the Interchain Accounts `NewAppModule` constructor function, and mounting only the desired submodule via the `IBCRouter`.
Alternatively, submodules can be enabled and disabled dynamically using [on-chain parameters](./parameters.md).
Alternatively, submodules can be enabled and disabled dynamically using [on-chain parameters](../parameters.md).

The following snippets show basic examples of statically disabling submodules using `app.go`.

Expand Down Expand Up @@ -192,4 +192,4 @@ icaControllerStack := icacontroller.NewIBCMiddleware(icaAuthIBCModule, app.ICACo
ibcRouter.
AddRoute(icacontrollertypes.SubModuleName, icaControllerStack).
AddRoute(icaauthtypes.ModuleName, icaControllerStack) // Note, the authentication module is routed to the top level of the middleware stack
```
```
6 changes: 3 additions & 3 deletions docs/ibc/light-clients/solomachine/solomachine.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ diversifier, and timestamp.

## Contents

1. **[Concepts](01_concepts.md)**
2. **[State](02_state.md)**
3. **[State Transitions](03_state_transitions.md)**
1. **[Concepts](./concepts.md)**
2. **[State](./state.md)**
3. **[State Transitions](./state_transitions.md)**