v0.2.2-pre.004

This commit is contained in:
2026-08-18 08:09:20 +02:00
parent c4636ac8b9
commit 1d1bc6a4d6
16 changed files with 814 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-onchain-transport-lib/src/rpc_accounts.rs
// version: 3
// version: 4
/// Account-data encoding accepted by Solana HTTP account methods.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
@@ -116,7 +116,7 @@ impl SolanaAccountInfoConfig {
return self.context.min_context_slot();
}
fn is_empty(&self) -> bool {
pub(crate) fn is_empty(&self) -> bool {
return self.encoding.is_none() && self.data_slice.is_none() && self.commitment().is_none() && self.min_context_slot().is_none();
}