diff --git a/key-wallet/src/wallet/mod.rs b/key-wallet/src/wallet/mod.rs index b539f78ec..4b8e1adbb 100644 --- a/key-wallet/src/wallet/mod.rs +++ b/key-wallet/src/wallet/mod.rs @@ -125,6 +125,10 @@ impl Wallet { ), } } + + pub fn downgrade_to_external_signable(&mut self) { + self.wallet_type = WalletType::ExternalSignable; + } } impl fmt::Display for Wallet {