From dfeb8bed70d3423cc0e591b4b871b76430c922c1 Mon Sep 17 00:00:00 2001 From: cuteolaf <53915161+cuteolaf@users.noreply.github.com> Date: Sun, 12 Feb 2023 22:42:38 -0800 Subject: [PATCH] update parachains relay doc (#1874) --- bridges/relays/parachains/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/relays/parachains/README.md b/bridges/relays/parachains/README.md index 9093dc617d..fc5ad03fb3 100644 --- a/bridges/relays/parachains/README.md +++ b/bridges/relays/parachains/README.md @@ -15,7 +15,7 @@ More: [Parachains Finality Relay Sequence Diagram](../../docs/parachains-finalit There are only two traits that need to be implemented. The [`SourceChain`](./src/parachains_loop.rs) implementation is supposed to connect to the source chain node. It must be able to read parachain heads from the `Heads` map of -the [`paras` pallet](https://github.com/paritytech/polkadot/tree/master/runtime/parachains/src/paras) pallet. +the [`paras` pallet](https://github.com/paritytech/polkadot/tree/master/runtime/parachains/src/paras). It also must create storage proofs of `Heads` map entries, when required. The [`TargetChain`](./src/parachains_loop.rs) implementation connects to the target chain node. It must be able