This repository was archived by the owner on Feb 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,13 +25,17 @@ jobs:
2525 uses : actions-rs/toolchain@v1
2626 with :
2727 toolchain : nightly
28+ target : wasm32-unknown-unknown
2829 components : rustfmt
2930 profile : minimal
3031
3132 - name : Check formatting
3233 run : |
3334 cargo +nightly fmt -- --check
3435
36+ - name : Check docs
37+ run : cargo +nightly doc
38+
3539 website :
3640 name : Build WASM binary
3741 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ pub const SCB_ENCRYPTION_KEY_DERIVATION_PATH: &str = "m/444'/444'/444'";
2222#[ derive( Default , PartialEq , Eq , Clone ) ]
2323pub struct StaticChannelBackup {
2424 /// Map of the channel outpoint to the channel monitor
25- /// This is a Vec<u8> because we can't implement Readable for ChannelMonitor
25+ /// This is a ` Vec<u8>` because we can't implement Readable for ChannelMonitor
2626 /// without having a KeysManager, which we don't have here.
2727 pub ( crate ) monitors : HashMap < OutPoint , Vec < u8 > > ,
2828}
Original file line number Diff line number Diff line change 77
88extern crate mutiny_core;
99
10- mod error;
10+ pub mod error;
1111mod indexed_db;
1212mod models;
1313mod utils;
You can’t perform that action at this time.
0 commit comments