Skip to content

Commit

Permalink
Merge pull request #98 from osmosis-labs/fix/account-query
Browse files Browse the repository at this point in the history
Fix account query
  • Loading branch information
iboss-ptk authored Oct 17, 2023
2 parents 5ad3027 + 5a5f346 commit 6d1390f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/osmosis-std/src/shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,15 @@ expand_as_any!(
// balancer pool param has more fields
crate::types::osmosis::gamm::v1beta1::PoolParams,
crate::types::osmosis::gamm::poolmodels::stableswap::v1beta1::PoolParams,
// accounts have distincted structure
crate::types::cosmos::auth::v1beta1::BaseAccount,
crate::types::cosmos::auth::v1beta1::ModuleAccount,
// pubkey required for base account
// it can't be distinced by structure
// so deserialing it back might not work properly
crate::types::cosmos::crypto::secp256k1::PubKey,
crate::types::cosmos::crypto::secp256r1::PubKey,
crate::types::cosmos::crypto::ed25519::PubKey,
);

macro_rules! impl_prost_types_exact_conversion {
Expand Down

0 comments on commit 6d1390f

Please sign in to comment.