Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mahimna-fb authored and ma2bd committed May 25, 2021
1 parent 627d09d commit 5c2783c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rust/fastpay/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ fn main() {
let committee_config_path = &matches.committee;
let buffer_size = matches.buffer_size.parse::<usize>().unwrap();

let mut accounts_config = AccountsConfig::read_or_create(&accounts_config_path)
let mut accounts_config = AccountsConfig::read_or_create(accounts_config_path)
.expect("Unable to read user accounts");
let committee_config = CommitteeConfig::read(&committee_config_path)
let committee_config = CommitteeConfig::read(committee_config_path)
.expect("Unable to read committee config file");

match matches.cmd {
Expand Down
2 changes: 1 addition & 1 deletion rust/fastpay/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ fn main() {
let authority = AuthorityConfig {
network_protocol,
address,
host: host,
host,
base_port: port,
num_shards: shards,
};
Expand Down

0 comments on commit 5c2783c

Please sign in to comment.