From 1e65af51ea5b78689514ef2bf81ffbbb11fb4d5c Mon Sep 17 00:00:00 2001 From: Oscar Guindzberg Date: Mon, 28 Sep 2020 18:37:00 -0300 Subject: [PATCH] Remove unused WalletService.freshKey() --- core/src/main/java/bisq/core/btc/wallet/WalletService.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/main/java/bisq/core/btc/wallet/WalletService.java b/core/src/main/java/bisq/core/btc/wallet/WalletService.java index c41eddf815..b92cdc2410 100644 --- a/core/src/main/java/bisq/core/btc/wallet/WalletService.java +++ b/core/src/main/java/bisq/core/btc/wallet/WalletService.java @@ -585,10 +585,6 @@ public abstract class WalletService { return wallet.checkAESKey(aesKey); } - public DeterministicKey freshKey(KeyChain.KeyPurpose purpose) { - return wallet.freshKey(purpose); - } - @Nullable public DeterministicKey findKeyFromPubKeyHash(byte[] pubKeyHash) { return wallet.getActiveKeyChain().findKeyFromPubHash(pubKeyHash);