Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Mar 20, 2023
1 parent fa00d7b commit 9b3a324
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions base_layer/wallet_ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4769,11 +4769,8 @@ pub unsafe extern "C" fn comms_config_create(

match public_address {
Ok(public_address) => {
let node_identity = NodeIdentity::new(
CommsSecretKey::default(),
vec![],
PeerFeatures::COMMUNICATION_CLIENT,
);
let node_identity =
NodeIdentity::new(CommsSecretKey::default(), vec![], PeerFeatures::COMMUNICATION_CLIENT);

let config = TariCommsConfig {
override_from: None,
Expand Down Expand Up @@ -5298,7 +5295,7 @@ pub unsafe extern "C" fn wallet_create(
comms_config.public_addresses.clone()
};
debug!(target: LOG_TARGET, "We have the following addresses");
for address in &node_addresses{
for address in &node_addresses {
debug!(target: LOG_TARGET, "Address: {}", address);
}
let identity_sig = wallet_database.get_comms_identity_signature()?;
Expand Down

0 comments on commit 9b3a324

Please sign in to comment.