Skip to content

Commit

Permalink
Have CI check docs
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Oct 23, 2023
1 parent b301487 commit 6511458
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
run: |
cargo +nightly fmt -- --check
- name: Check docs
run: cargo doc

website:
name: Build WASM binary
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion mutiny-core/src/scb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub const SCB_ENCRYPTION_KEY_DERIVATION_PATH: &str = "m/444'/444'/444'";
#[derive(Default, PartialEq, Eq, Clone)]
pub struct StaticChannelBackup {
/// Map of the channel outpoint to the channel monitor
/// This is a Vec<u8> because we can't implement Readable for ChannelMonitor
/// This is a `Vec<u8>` because we can't implement Readable for ChannelMonitor
/// without having a KeysManager, which we don't have here.
pub(crate) monitors: HashMap<OutPoint, Vec<u8>>,
}
Expand Down
2 changes: 1 addition & 1 deletion mutiny-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

extern crate mutiny_core;

mod error;
pub mod error;
mod indexed_db;
mod models;
mod utils;
Expand Down

0 comments on commit 6511458

Please sign in to comment.