From 1eb9a695f1661bcbcdd66923aa9dee8c0f93b898 Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Wed, 29 Jan 2025 18:28:45 +0100 Subject: [PATCH] fix broken links --- docs/architecture/adr-005-handlers-redesign.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/architecture/adr-005-handlers-redesign.md b/docs/architecture/adr-005-handlers-redesign.md index e808f28928..e458438aed 100644 --- a/docs/architecture/adr-005-handlers-redesign.md +++ b/docs/architecture/adr-005-handlers-redesign.md @@ -87,7 +87,7 @@ fn deliver(val_ctx: &V, exec_ctx: &mu exec_ctx.execute(message) } ``` -Note however that we will not implement `deliver()` this way for efficiency reasons (see [discussion](https://github.com/informalsystems/ibc-rs/issues/2582#issuecomment-1229988512)). +Note however that we will not implement `deliver()` this way for efficiency reasons (see [discussion](https://github.com/cosmos/ibc-rs/issues/10#issuecomment-1229988512)). ### Host based API @@ -219,7 +219,7 @@ See appendix C for an example of how we intend this to be used. ## References -* [Issue #2582: ADR for redesigning the modules' API](https://github.com/informalsystems/ibc-rs/issues/2582) +* [Issue #2582: ADR for redesigning the modules' API](https://github.com/cosmos/ibc-rs/issues/10) * [ICS24 spec](https://github.com/cosmos/ibc/blob/1b73c158dcd3b08c6af3917618dce259e30bc21b/spec/core/ics-024-host-requirements/README.md) ## Appendices