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.
This commit is contained in:
2026-07-12 19:12:03 -07:00
parent 60493f9aeb
commit dc244fb0bb
@@ -131,8 +131,6 @@ interface WalletFeatureDependencies {
fun accountRepository(): AccountRepository fun accountRepository(): AccountRepository
fun signerProvider(): SignerProvider
fun assetsDao(): AssetDao fun assetsDao(): AssetDao
fun tokenDao(): TokenDao fun tokenDao(): TokenDao