Skip to content

Commit

Permalink
fix BlockHeight import
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Sep 8, 2024
1 parent 51247c6 commit e669abe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/sdk/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl NamadaTypes for SdkTypes {
type AddrOrNativeToken = Address;
type Address = Address;
type BalanceOwner = namada_core::masp::BalanceOwner;
type BlockHeight = namada_core::storage::BlockHeight;
type BlockHeight = namada_core::chain::BlockHeight;
type BpConversionTable = HashMap<Address, BpConversionTableEntry>;
type ConfigRpcTendermintAddress = tendermint_rpc::Url;
type Data = Vec<u8>;
Expand Down
2 changes: 1 addition & 1 deletion crates/sdk/src/queries/vp/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ where
pub mod client_only_methods {
use borsh::BorshDeserialize;
use namada_core::address::Address;
use namada_core::storage::BlockHeight;
use namada_core::chain::BlockHeight;
use namada_core::token;
use namada_io::Client;
use namada_token::storage_key::{balance_key, masp_total_rewards};
Expand Down

0 comments on commit e669abe

Please sign in to comment.