Disable accounts notification

This commit is contained in:
godmodegalactus 2024-04-08 10:07:54 +02:00
parent 38a26bb5bd
commit 9363e51d93
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
3 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,3 @@
{
"libpath": "target/release/libgeyser_quic_plugin.so"
"libpath": "/home/galactus/mangolana/empty-plugin/target/debug/libgeyser_empty_plugin.so"
}

View File

@ -9,8 +9,5 @@ struct Args {
}
fn main() -> anyhow::Result<()> {
let args = Args::parse();
let _config = Config::load_from_file(args.config)?;
println!("Config is OK!");
Ok(())
}

View File

@ -20,6 +20,10 @@ impl GeyserPlugin for Plugin {
}
fn on_unload(&mut self) {}
fn account_data_notifications_enabled(&self) -> bool {
false
}
}
#[no_mangle]