Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ec2 committed Sep 16, 2024
1 parent 3ea4de4 commit 540ee49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/message-board-sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async fn main() {

let s = zcash_keys::encoding::decode_extended_full_viewing_key(
constants::mainnet::HRP_SAPLING_EXTENDED_FULL_VIEWING_KEY,
&SAPLING_EFVK.trim(),
SAPLING_EFVK.trim(),
)
.unwrap();

Expand Down
8 changes: 4 additions & 4 deletions tests/message-board-sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ async fn test_message_board() {

let s = zcash_keys::encoding::decode_extended_full_viewing_key(
constants::mainnet::HRP_SAPLING_EXTENDED_FULL_VIEWING_KEY,
&SAPLING_EFVK.trim(),
SAPLING_EFVK.trim(),
)
.unwrap();
.unwrap();

let ufvk = UnifiedFullViewingKey::from_sapling_extended_full_viewing_key(s).unwrap();
let ufvk_str = ufvk.encode(&Network::MainNetwork);
Expand All @@ -38,8 +38,8 @@ async fn test_message_board() {
"scanned_to, tip",
"console.log('Scanned: ', scanned_to, '/', tip)",
))
.await
.unwrap();
.await
.unwrap();
tracing::info!("Syncing complete :)");

let summary = w.get_wallet_summary().unwrap();
Expand Down

0 comments on commit 540ee49

Please sign in to comment.