Skip to content

feat: platform-wallet backend rewrite (spec + implementation)#860

Open
lklimek wants to merge 649 commits into
v1.0-devfrom
docs/platform-wallet-migration-design
Open

feat: platform-wallet backend rewrite (spec + implementation)#860
lklimek wants to merge 649 commits into
v1.0-devfrom
docs/platform-wallet-migration-design

fix(wallets): link top-nav wallet selector to the Wallets tab (#878)

17f00d6
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Clippy Report failed Jul 13, 2026 in 0s

Clippy Report

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.92.0 (ded5c06cf 2025-12-08)
  • cargo 1.92.0 (344c4567c 2025-10-21)
  • clippy 0.1.92 (ded5c06cf2 2025-12-08)

Annotations

Check failure on line 3359 in src/ui/wallets/wallets_screen/mod.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Report

mismatched types

error[E0308]: mismatched types
    --> src/ui/wallets/wallets_screen/mod.rs:3359:17
     |
3350 |             AppContext::new(
     |             --------------- arguments to this function are incorrect
...
3359 |                 Arc::new(std::sync::atomic::AtomicBool::new(false)),
     |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `UserRoleCell`, found `Arc<AtomicBool>`
     |
     = note: expected struct `model::user_role::UserRoleCell`
                found struct `std::sync::Arc<std::sync::atomic::AtomicBool>`
note: associated function defined here
    --> src/context/mod.rs:226:12
     |
 226 |     pub fn new(
     |            ^^^
...
 235 |         user_role: UserRoleCell,
     |         -----------------------