Skip to content

Commit fa2eb38

Browse files
author
MarcoFalke
committed
interfaces: Remove unused getDefaultChangeType
1 parent d06cf34 commit fa2eb38

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/interfaces/wallet.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ class WalletImpl : public Wallet
438438
bool canGetAddresses() override { return m_wallet->CanGetAddresses(); }
439439
bool privateKeysDisabled() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS); }
440440
OutputType getDefaultAddressType() override { return m_wallet->m_default_address_type; }
441-
OutputType getDefaultChangeType() override { return m_wallet->m_default_change_type; }
442441
CAmount getDefaultMaxTxFee() override { return m_wallet->m_default_max_tx_fee; }
443442
void remove() override
444443
{

src/interfaces/wallet.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,6 @@ class Wallet
256256
// Get default address type.
257257
virtual OutputType getDefaultAddressType() = 0;
258258

259-
// Get default change type.
260-
virtual OutputType getDefaultChangeType() = 0;
261-
262259
//! Get max tx fee.
263260
virtual CAmount getDefaultMaxTxFee() = 0;
264261

0 commit comments

Comments
 (0)