diff --git a/nym-wallet/src-tauri/src/operations/mixnet/account.rs b/nym-wallet/src-tauri/src/operations/mixnet/account.rs index 3e1f019c54..5824b355a7 100644 --- a/nym-wallet/src-tauri/src/operations/mixnet/account.rs +++ b/nym-wallet/src-tauri/src/operations/mixnet/account.rs @@ -58,7 +58,10 @@ pub async fn connect_with_mnemonic( pub async fn get_balance( state: tauri::State<'_, Arc>>, ) -> Result { - match client!(state).get_balance(client!(state).address()).await { + match client!(state) + .get_mixnet_balance(client!(state).address()) + .await + { Ok(Some(coin)) => { let coin = Coin::new( &coin.amount.to_string(),