Add get_sp_wallet to Device

This commit is contained in:
Sosthene 2025-06-24 17:03:49 +02:00 committed by Nicolas Cantu
parent 7e885ef66d
commit 6344d6454a

View File

@ -33,6 +33,10 @@ impl Device {
}
}
pub fn get_sp_wallet(&self) -> &SpWallet {
&self.sp_wallet
}
pub fn get_sp_client(&self) -> &SpClient {
self.sp_wallet.get_sp_client()
}