-
Notifications
You must be signed in to change notification settings - Fork 551
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
FIX: IBC Tutorial Panic When Running ignite relayer connect
#3893
Comments
Update: v0.27.2 also affected but with different error.
|
Update: Version v0.26.1 is not affected, I can follow the tutorial from start to finish. From my perspective, I think this error maybe due to deprecation of some of the function above v0.26. |
The same error occurred with v28.1.1-dev
Ignite version info:
|
Thanks, we're working to resolve these issues. |
@mondainai247 thanks for working on this issue. Do you have any update? |
the same using ignite v28.2.0
|
I have the same issue. Also with v28.2.0 |
Same issue with v28.3.0 |
Happy to give it a look next week. |
@julienrbrt thank you for solving this issue, is there any updates? |
@julienrbrt Thank you for solving this issue. Is there any progress now? I think the following notation may cause the scopedKeeper to be created multiple times in multiple goroutines?
|
cannot create multiple scoped keepers for the same module name: blog Ignite CLI version: v28.3.0 |
For versions v27.x.x and above, the scopedKeeper field is not assigned when BlogKeeper is initialized, but the ScopedKeeper is obtained by calling the following method.
During the 'NewApp' process, the program creates a number of 'BlogKeeper' variables with empty scopedKeeper fields when passing or assigning BlogKeeper, resulting in these BlogKeeper variables creating ScopedKeeper when executing the following method for the first time:
However, only one ScopedKeeper can be created with the same module name 'blog'. Solution: It is suggested that you can pass or assign values in NewApp by *BlogKeeper. |
Hey, sorry I mistakenly muted the notifications here and just realized it today. |
@julienrbrt Thank you for solving this issue. Is there any progress now? execute the command: ignite relayer connect the error: Query failed with (6): rpc error: code = Unknown desc = recovered: cannot create multiple scoped keepers for the same module name: dex info: |
ignite relayer connect Ignite CLI version: v28.4.0 How do you fix it? |
Do you have any plans on when this issue will be resolved? |
Can you send me your pre-built link? I have connected 2 blockchains but when running this command "interchanged tx dex send-create-pair dex channel-0 marscoin venuscoin --from alice --chain-id mars --home ~/.mars" and "interchanged q dex list-sell-order-book" it has the following output: |
@julienrbrt any updates ? |
Hey! I haven't been super great on following up on this issue. I'm super sorry about that :/ |
ignite relayer connect
ignite relayer connect
Describe the bug
Ignite CLI tutorial encountered panic when executing
ignite relayer connect
. As a user, I make sure to copy paste every command needed and double check the result of each ignite command.To reproduce
Steps to reproduce the behavior:
ignite relayer connect
. It will return panic stack trace.What version are you using?
Provide the output of the
ignite version
command.The text was updated successfully, but these errors were encountered: