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 432842d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 sigverify = 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

0 comments on commit 432842d

Please sign in to comment.