-
Notifications
You must be signed in to change notification settings - Fork 547
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(cosmosclient): fix account prefix config #2743
Conversation
…g a tx from a newly created default account
Might solves #2128 |
@lubtd In the node command PR, @bjaanes has also refactored this part with a similar method. |
I tested this and it didn't work. I really needed to set the config in Also, I don't think |
@tbruyelle do you have a link to the related PR? |
Sure, #2669 |
Thanks! |
I investigated and found out that the error comes from the func prepareFactory(clientCtx client.Context, txf tx.Factory) (tx.Factory, error) {
from := clientCtx.GetFromAddress()
fmt.Println("prefix", sdktypes.GetConfig().GetBech32AccountAddrPrefix())
fmt.Println("from", from.String())
if err := txf.AccountRetriever().EnsureExists(clientCtx, from); err != nil {
return txf, err // <---- HERE
} When I reproduce the error, the debug output gives
That's a shame the cache doesn't use the prefix as part of the key! That's why when you set the prefix in the config at the very beginning (in |
* docs(changelog): add unreleased section * feat!: Cosmos SDK v0.46.0 (#2675) * update go mod * update ibc path * fix merge errors * add temp client mock * fix: deps (#2676) * revert packages to old ibc-go * fix remaining ibc paths * fix template go.sum * panic keyring errors * add mockery generate instructions * regenerate mocks Co-authored-by: İlker G. Öztürk <ilkergoktugozturk@gmail.com> * fix merge * update spn * upgrade spn * remove ibc-go fork * template updates * fix ibc and oracle templates * update templates * remaining tempalte updates * fix template * fix faucet test * use beta ibc release * update deps in template * use ibcmodule idiom (#2692) * Update ignite/templates/module/create/ibc/x/{{moduleName}}/module_ibc.go.plush Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * fix(`pkg/cosmosaccount`): register cryptocodec interfaces (#2702) * register crypto codec interfaces * improve error messages * fix(template): removed unused methods and fix comments (#2708) * fix(`cosmosclient`): use protobuf Any for TxMsgData (#2714) * fix comment * use proto Any * Update ignite/pkg/cosmosclient/cosmosclient.go Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * chore(0.46): upgrade spn version (#2730) * feat(`app`): add interchain accounts for `v0.46.0` (#2703) * update template for ica * Update ignite/templates/app/stargate/app/app.go.plush Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * fix: change relayer call to use secp256k1 private keys in call (#2729) This chage uses secp256k1 private keys instead of ASCII armored ones as gRPC arguments when calling the TS relayer. * docs: update tutorials (#2737) - Change `ibc-go` import to use "v5" - Add package missing definition to code examples that can be copy/pasted - Change file references to paths, for consistency with other tutorials - Fix interchange tutorial to use ports that don't overlap - Remove unused imports - Fix documentation issues * feat: upgrade `ts-relayer` dependencies (#2722) * chore: upgrade `@confio/relayer` to the latest version 0.5.1 * chore: update `@cosmjs` to version 0.28.9 * chore: remove `@cosmjs/launchpad` from dependencies * chore: add new dependency `@cosmjs/encoding` for relayer * chore: add `sinon` dependency required to build the relayer * fix: remove "gasLimit" option from relayer * fix: update `@cosmjs` to version 0.28.11 * fix(cosmosclient): fix account prefix config (#2743) * fix(cosmosclient): account prefix config not correct when broadcasting a tx from a newly created default account * add issue Co-authored-by: Alex Johnson <alex@shmeeload.xyz> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Denis Fadeev <denis@fadeev.org> Co-authored-by: Jerónimo Albi <jeronimo.albi@tendermint.com>
* docs(changelog): add unreleased section * feat!: Cosmos SDK v0.46.0 (ignite#2675) * update go mod * update ibc path * fix merge errors * add temp client mock * fix: deps (ignite#2676) * revert packages to old ibc-go * fix remaining ibc paths * fix template go.sum * panic keyring errors * add mockery generate instructions * regenerate mocks Co-authored-by: İlker G. Öztürk <ilkergoktugozturk@gmail.com> * fix merge * update spn * upgrade spn * remove ibc-go fork * template updates * fix ibc and oracle templates * update templates * remaining tempalte updates * fix template * fix faucet test * use beta ibc release * update deps in template * use ibcmodule idiom (ignite#2692) * Update ignite/templates/module/create/ibc/x/{{moduleName}}/module_ibc.go.plush Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * fix(`pkg/cosmosaccount`): register cryptocodec interfaces (ignite#2702) * register crypto codec interfaces * improve error messages * fix(template): removed unused methods and fix comments (ignite#2708) * fix(`cosmosclient`): use protobuf Any for TxMsgData (ignite#2714) * fix comment * use proto Any * Update ignite/pkg/cosmosclient/cosmosclient.go Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * chore(0.46): upgrade spn version (ignite#2730) * feat(`app`): add interchain accounts for `v0.46.0` (ignite#2703) * update template for ica * Update ignite/templates/app/stargate/app/app.go.plush Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> * fix: change relayer call to use secp256k1 private keys in call (ignite#2729) This chage uses secp256k1 private keys instead of ASCII armored ones as gRPC arguments when calling the TS relayer. * docs: update tutorials (ignite#2737) - Change `ibc-go` import to use "v5" - Add package missing definition to code examples that can be copy/pasted - Change file references to paths, for consistency with other tutorials - Fix interchange tutorial to use ports that don't overlap - Remove unused imports - Fix documentation issues * feat: upgrade `ts-relayer` dependencies (ignite#2722) * chore: upgrade `@confio/relayer` to the latest version 0.5.1 * chore: update `@cosmjs` to version 0.28.9 * chore: remove `@cosmjs/launchpad` from dependencies * chore: add new dependency `@cosmjs/encoding` for relayer * chore: add `sinon` dependency required to build the relayer * fix: remove "gasLimit" option from relayer * fix: update `@cosmjs` to version 0.28.11 * fix(cosmosclient): fix account prefix config (ignite#2743) * fix(cosmosclient): account prefix config not correct when broadcasting a tx from a newly created default account * add issue Co-authored-by: Alex Johnson <alex@shmeeload.xyz> Co-authored-by: Lucas Btd <lucas.bertrand.22@gmail.com> Co-authored-by: Denis Fadeev <denis@fadeev.org> Co-authored-by: Jerónimo Albi <jeronimo.albi@tendermint.com>
account prefix config not correct when broadcasting a tx from a newly created default account
Fixes #2738
There is a weird bug from
0.46
When broadcasting a tx without mentioning an account with the
--from
flag, an accountdefault
is used. If default doesn't exist, the account will be created on the fly and will request tokens with the faucet.In the case,
default
is created on the fly, the address prefix update in the SDK global config:cli/ignite/pkg/cosmosclient/cosmosclient.go
Line 338 in 4eaa73a
will not update the prefix, from
cosmos
tospn
for example. This will make the method fails becausecosmos
prefix will be used and the error in the related issue will occur usingnetwork
commands for example.If the command is rerun,
default
will exist at this point and the command will then succeed with updated prefix.This may be caused by a race condition since SDK config is global?
This fix is more a workaround rather than a long term fix. We also update the config when create
cosmosclient
inNew
, when doing this update in this method, the prefix will be effectively updated inBroadcastTx
solving the attached issue.We keep the call in
BroadcastTx
in case several instance of cosmosclient exists in the program.In the long, term we should find another way to manage prefixes, which may require refactoring in the SDK as well, I will create an issue for this