Add get_sp_wallet to Device

This commit is contained in:
Sosthene 2025-06-24 17:03:49 +02:00
parent a7de9b1107
commit 9a5ce7f5e2

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()
}