diff options
| author | João Barbosa <[email protected]> | 2020-10-11 23:19:44 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2020-10-14 21:47:42 +0100 |
| commit | 5e737a009234cbd7cf53748d3d28a2da5221192f (patch) | |
| tree | 6683dfbc179aecb368de0f8fc94fd29d86ce485c /src/wallet/scriptpubkeyman.h | |
| parent | Update wallet_multiwallet.py for descriptor and sqlite wallets (diff) | |
| download | discoin-5e737a009234cbd7cf53748d3d28a2da5221192f.tar.xz discoin-5e737a009234cbd7cf53748d3d28a2da5221192f.zip | |
rpc, wallet: Expose database format in getwalletinfo
Diffstat (limited to 'src/wallet/scriptpubkeyman.h')
| -rw-r--r-- | src/wallet/scriptpubkeyman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index 14fb1fa89..63c10b7a0 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -33,7 +33,7 @@ class WalletStorage public: virtual ~WalletStorage() = default; virtual const std::string GetDisplayName() const = 0; - virtual WalletDatabase& GetDatabase() = 0; + virtual WalletDatabase& GetDatabase() const = 0; virtual bool IsWalletFlagSet(uint64_t) const = 0; virtual void UnsetBlankWalletFlag(WalletBatch&) = 0; virtual bool CanSupportFeature(enum WalletFeature) const = 0; |