Skip to content

Commit 540ee49

Browse files
committed
lint
1 parent 3ea4de4 commit 540ee49

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/message-board-sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async fn main() {
5555

5656
let s = zcash_keys::encoding::decode_extended_full_viewing_key(
5757
constants::mainnet::HRP_SAPLING_EXTENDED_FULL_VIEWING_KEY,
58-
&SAPLING_EFVK.trim(),
58+
SAPLING_EFVK.trim(),
5959
)
6060
.unwrap();
6161

tests/message-board-sync.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ async fn test_message_board() {
2424

2525
let s = zcash_keys::encoding::decode_extended_full_viewing_key(
2626
constants::mainnet::HRP_SAPLING_EXTENDED_FULL_VIEWING_KEY,
27-
&SAPLING_EFVK.trim(),
27+
SAPLING_EFVK.trim(),
2828
)
29-
.unwrap();
29+
.unwrap();
3030

3131
let ufvk = UnifiedFullViewingKey::from_sapling_extended_full_viewing_key(s).unwrap();
3232
let ufvk_str = ufvk.encode(&Network::MainNetwork);
@@ -38,8 +38,8 @@ async fn test_message_board() {
3838
"scanned_to, tip",
3939
"console.log('Scanned: ', scanned_to, '/', tip)",
4040
))
41-
.await
42-
.unwrap();
41+
.await
42+
.unwrap();
4343
tracing::info!("Syncing complete :)");
4444

4545
let summary = w.get_wallet_summary().unwrap();

0 commit comments

Comments
 (0)