Updating solana to v1.18.16

This commit is contained in:
godmodegalactus 2024-06-11 10:18:11 +02:00
parent 3442dda634
commit 63243093ca
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
6 changed files with 473 additions and 157 deletions

614
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -21,10 +21,10 @@ license = "AGPL"
edition = "2021"
[workspace.dependencies]
solana-sdk = "=1.17.31"
agave-geyser-plugin-interface = "=1.17.31"
solana-transaction-status = "=1.17.31"
solana-logger = "=1.17.31"
solana-sdk = "=1.18.16"
agave-geyser-plugin-interface = "=1.18.16"
solana-transaction-status = "=1.18.16"
solana-logger = "=1.18.16"
itertools = "0.10.5"
serde = "1.0.201"

View File

@ -7,7 +7,7 @@ authors = ["Godmode Galactus"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
solana-rpc-client = "~1.17.31"
solana-rpc-client = "~1.18.16"
clap = { workspace = true, features = ["derive", "env"] }
serde = { workspace = true }

View File

@ -31,7 +31,7 @@ impl GeyserPlugin for QuicGeyserPlugin {
"quic_geyser_plugin"
}
fn on_load(&mut self, config_file: &str) -> PluginResult<()> {
fn on_load(&mut self, config_file: &str, _is_reload: bool) -> PluginResult<()> {
log::info!("loading quic_geyser plugin");
let config = Config::load_from_file(config_file)?;
let compression_type = config.quic_plugin.compression_parameters.compression_type;

View File

@ -7,7 +7,7 @@ authors = ["Godmode Galactus"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
solana-rpc-client = "~1.17.31"
solana-rpc-client = "~1.18.16"
clap = { workspace = true, features = ["derive", "env"] }
serde = { workspace = true }

View File

@ -1,2 +1,2 @@
[toolchain]
channel = "1.73.0"
channel = "1.75.0"