Skip to content

Commit

Permalink
renamed _is_reload to is_reload
Browse files Browse the repository at this point in the history
  • Loading branch information
rwwwx committed Aug 8, 2024
1 parent 696f6ff commit 61de71c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plerkle/src/geyser_plugin_nft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,15 +323,15 @@ impl GeyserPlugin for Plerkle<'static> {
"Plerkle"
}

fn on_load(&mut self, config_file: &str, _is_reload: bool) -> Result<()> {
fn on_load(&mut self, config_file: &str, is_reload: bool) -> Result<()> {
solana_logger::setup_with_default("info");

// Read in config file.
info!(
"Loading plugin {:?} from config_file {:?} with '_is_reload' flag: {:?}",
"Loading plugin {:?} from config_file {:?} with 'is_reload' flag: {:?}",
self.name(),
config_file,
_is_reload,
is_reload,
);
let mut file = File::open(config_file)?;
let mut contents = String::new();
Expand Down

0 comments on commit 61de71c

Please sign in to comment.