feat: add polytone #25
Annotations
1 error and 2 warnings
fix
Process completed with exit code 65.
|
the borrowed expression implements the required traits:
packages/polytone/src/handshake/voice.rs#L34
warning: the borrowed expression implements the required traits
--> packages/polytone/src/handshake/voice.rs:34:27
|
34 | from_json(&Binary::from_base64(counterparty_version).unwrap()).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `Binary::from_base64(counterparty_version).unwrap()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
|
the borrowed expression implements the required traits:
packages/polytone/src/handshake/note.rs#L34
warning: the borrowed expression implements the required traits
--> packages/polytone/src/handshake/note.rs:34:27
|
34 | from_json(&Binary::from_base64(counterparty_version).unwrap()).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `Binary::from_base64(counterparty_version).unwrap()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|