We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
keys parse
GetSealedConfig
I'm trying to run the command:
gaiad keys parse cosmos1k749ve39lqde8rmkttjsf7dr5u6ag8nur9qldy
but it hangs forever. Digging into the key command it looks like this line 60 in /types/config.go:
/types/config.go
// GetSealedConfig returns the config instance for the SDK if/once it is sealed. func GetSealedConfig(ctx context.Context) (*Config, error) { config := GetConfig() select { case <-config.sealedch: return config, nil case <-ctx.Done(): return nil, ctx.Err() } }
Neither of the select statements ever finalize and so the command hangs. When I change it to:
// GetSealedConfig returns the config instance for the SDK if/once it is sealed. func GetSealedConfig(ctx context.Context) (*Config, error) { config := GetConfig() select { case <-config.sealedch: return config, nil case <-ctx.Done(): return nil, ctx.Err() default: return nil, errors.New("whyyyy") } }
I see the "whyyyy" error.
"whyyyy"
I'm using a custom built version of gaia and tried it with cosmos sdk v0.42.4 as well as with v0.42.6 the error happens in both builds for me
v0.42.4
v0.42.6
The text was updated successfully, but these errors were encountered:
Is this a duplicate of #8572?
Maybe we should backport the PR to 0.42
Sorry, something went wrong.
backport PR: #9561
beautiful! ty
No branches or pull requests
Summary of Bug
I'm trying to run the command:
but it hangs forever. Digging into the key command it looks like this line 60 in
/types/config.go
:Neither of the select statements ever finalize and so the command hangs. When I change it to:
I see the
"whyyyy"
error.Version
I'm using a custom built version of gaia and tried it with cosmos sdk
v0.42.4
as well as withv0.42.6
the error happens in both builds for meSteps to Reproduce
For Admin Use
The text was updated successfully, but these errors were encountered: