Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: Store decompressed BlsPublicKeys in IndexedDB #3174

Open
wants to merge 1 commit into
base: albatross
Choose a base branch
from

Store decompressed BlsPublicKeys in IndexedDB

ec4de84
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

Draft: Store decompressed BlsPublicKeys in IndexedDB #3174

Store decompressed BlsPublicKeys in IndexedDB
ec4de84
Select commit
Loading
Failed to load commit list.
GitHub Actions / Clippy Report succeeded Dec 18, 2024 in 0s

Clippy Report

2 warnings

Details

Results

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

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 1126 in web-client/src/client/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Report

this `RefCell` reference is held across an await point

warning: this `RefCell` reference is held across an await point
    --> web-client/src/client/lib.rs:1126:47
     |
1126 | ...                   if let Err(err) = bls_cache.borrow_mut().add_keys(bls_keys).await {
     |                                         ^^^^^^^^^^^^^^^^^^^^^^
     |
     = help: ensure the reference is dropped before calling `await`
note: these are all the await points this reference is held through
    --> web-client/src/client/lib.rs:1126:89
     |
1126 | ...                   if let Err(err) = bls_cache.borrow_mut().add_keys(bls_keys).await {
     |                                                                                   ^^^^^
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref

Check warning on line 211 in web-client/src/client/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Report

this `RefCell` reference is held across an await point

warning: this `RefCell` reference is held across an await point
   --> web-client/src/client/lib.rs:211:27
    |
211 |         if let Err(err) = client.bls_cache.borrow_mut().init().await {
    |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: ensure the reference is dropped before calling `await`
note: these are all the await points this reference is held through
   --> web-client/src/client/lib.rs:211:64
    |
211 |         if let Err(err) = client.bls_cache.borrow_mut().init().await {
    |                                                                ^^^^^
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
    = note: `#[warn(clippy::await_holding_refcell_ref)]` on by default