From 47a3f027358423405d1d7786d4231d0758831bca Mon Sep 17 00:00:00 2001 From: likhita-809 <78951027+likhita-809@users.noreply.github.com> Date: Tue, 10 Aug 2021 13:48:47 +0530 Subject: [PATCH] docs: Cleanup SDK docs (#9889) * return MaxUint64 for Limit on InfiniteGasMeter and add a func to return GasLeft on GasMeter * change dead link to appropriate link Co-authored-by: Marko --- docs/intro/sdk-design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/sdk-design.md b/docs/intro/sdk-design.md index 5c8c269656..f54404dda6 100644 --- a/docs/intro/sdk-design.md +++ b/docs/intro/sdk-design.md @@ -88,7 +88,7 @@ SDK modules are defined in the `x/` folder of the SDK. Some core modules include - `x/bank`: Used to enable tokens and token transfers. - `x/staking` + `x/slashing`: Used to build Proof-Of-Stake blockchains. -In addition to the already existing modules in `x/`, that anyone can use in their app, the SDK lets you build your own custom modules. You can check an [example of that in the tutorial](https://cosmos.network/docs/tutorial/keeper.html). +In addition to the already existing modules in `x/`, that anyone can use in their app, the SDK lets you build your own custom modules. You can check an [example of that in the tutorial](https://tutorials.cosmos.network/). ## Next {hide}