Skip to content

Commit

Permalink
Update condition for nosigverify match
Browse files Browse the repository at this point in the history
  • Loading branch information
sambley committed Nov 25, 2018
1 parent 9f0b06b commit d0c2c16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/fullnode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn main() {
.help("Custom RPC port for this node"),
).get_matches();

let sigverify = !matches.is_present("nosigverify");
let nosigverify = matches.is_present("nosigverify");

let (keypair, vote_account_keypair, ncp) = if let Some(i) = matches.value_of("identity") {
let path = i.to_string();
Expand Down Expand Up @@ -146,7 +146,7 @@ fn main() {
keypair.clone(),
vote_account_keypair.clone(),
network,
sigverify,
nosigverify,
leader_scheduler,
rpc_port,
);
Expand Down

0 comments on commit d0c2c16

Please sign in to comment.