Draft: Store decompressed BlsPublicKeys in IndexedDB #3174
+154
−21
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
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
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
Loading