Skip to content

Commit dddc4be

Browse files
style: format println statements according to cargo fmt
Co-Authored-By: Tejas Badadare <[email protected]>
1 parent dc74c36 commit dddc4be

File tree

1 file changed

+8
-2
lines changed
  • target_chains/solana/cli/src

1 file changed

+8
-2
lines changed

target_chains/solana/cli/src/main.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,10 @@ pub fn process_write_encoded_vaa_and_post_price_update(
431431
update_instructions,
432432
&vec![payer, &price_update_keypair],
433433
)?;
434-
println!("Successfully posted price update at address: {}", price_update_keypair.pubkey());
434+
println!(
435+
"Successfully posted price update at address: {}",
436+
price_update_keypair.pubkey()
437+
);
435438

436439
Ok(price_update_keypair.pubkey())
437440
}
@@ -519,7 +522,10 @@ pub fn process_write_encoded_vaa_and_post_twap_update(
519522
post_instructions,
520523
&vec![payer, &twap_update_keypair],
521524
)?;
522-
println!("Successfully posted TWAP update at address: {}", twap_update_keypair.pubkey());
525+
println!(
526+
"Successfully posted TWAP update at address: {}",
527+
twap_update_keypair.pubkey()
528+
);
523529

524530
Ok(twap_update_keypair.pubkey())
525531
}

0 commit comments

Comments
 (0)