-
Notifications
You must be signed in to change notification settings - Fork 657
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Refactor Localhost #27
Comments
In principle, the localhost client should just have a read-only wrapper over the IBC store. Sounds like that might take awhile. For now, I think it is reasonable to disable the localhost client. |
Also relevant to fixing localhost |
We should just redesign the localhost's interaction with core IBC. cc @AdityaSripal for ideas on how to do this |
ref #75 |
Localhost will be removed in v6 as there are no plans to fix it |
Summary
When creating connections and channels we do not store them under client prefixed stores. They are stored under the IBC prefix and then either
channelEnds
orconnections
. When verifying connection and channel states for light clients we pass the client prefixed store, so the client can access the consensus states if necessary. The localhost was using this client prefixed store to verify connections/channels. Unfortunately, connections and channels are not stored there, so this check would always fail.For Admin Use
The text was updated successfully, but these errors were encountered: