Skip to content

Commit 6e996da

Browse files
committed
fix missed comments
1 parent b3e4592 commit 6e996da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

do_checks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ cargo fmt --check -- --config newline_style=Unix
1212

1313
# Install cargo deny first with: cargo install cargo-deny.
1414
# Note: "--allow duplicate" silences the warning "found x duplicate entries for crate y".
15-
# cargo deny check --allow duplicate --hide-inclusion-graph
15+
cargo deny check --allow duplicate --hide-inclusion-graph
1616

17-
# cargo vet check --locked
17+
cargo vet check --locked
1818

1919
CLIPPY_VERSION_RESPONSE=$(cargo clippy --version)
2020
# Note: clippy version starts from 0, e.g. '0.1.90'

wallet/src/signer/ledger_signer/ledger_messages.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async fn exchange_message<L: Exchange>(
7070
ok_response(resp)
7171
}
7272

73-
/// Send a message in chunks to the ledger as the max size of a message can be 255 bytes
73+
/// Send a message in chunks to the ledger as the max size of a message is 255 bytes
7474
async fn send_chunked<L: Exchange>(
7575
ledger: &mut L,
7676
ins: u8,

0 commit comments

Comments
 (0)