From dc244fb0bb70d37daf28d767d650eba1a95d6b2b Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Sun, 12 Jul 2026 19:12:03 -0700 Subject: [PATCH] fix: remove duplicate SignerProvider binding from WalletFeatureDependencies The merge silently combined two independent additions of the same dependency (my fun signerProvider() and Tron's val signerProvider) since they landed on non-conflicting lines - Dagger correctly caught this as [Dagger/DuplicateBindings]. Keeping Tron's val form, since it was already CI-verified on that branch. --- .../nova/feature_wallet_impl/di/WalletFeatureDependencies.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/feature-wallet-impl/src/main/java/io/novafoundation/nova/feature_wallet_impl/di/WalletFeatureDependencies.kt b/feature-wallet-impl/src/main/java/io/novafoundation/nova/feature_wallet_impl/di/WalletFeatureDependencies.kt index b10a097d..96f5d25e 100644 --- a/feature-wallet-impl/src/main/java/io/novafoundation/nova/feature_wallet_impl/di/WalletFeatureDependencies.kt +++ b/feature-wallet-impl/src/main/java/io/novafoundation/nova/feature_wallet_impl/di/WalletFeatureDependencies.kt @@ -131,8 +131,6 @@ interface WalletFeatureDependencies { fun accountRepository(): AccountRepository - fun signerProvider(): SignerProvider - fun assetsDao(): AssetDao fun tokenDao(): TokenDao