v0.2.2-pre.003-fix.001

This commit is contained in:
2026-08-18 07:53:17 +02:00
parent f15448ff6e
commit c4636ac8b9
3 changed files with 157 additions and 5 deletions

View File

@@ -165,11 +165,9 @@ pub use self::rpc_common::SolanaContextConfig;
pub use self::rpc_common::SolanaRpcContext;
/// Generic contextual result returned by typed Solana HTTP RPC adapters.
pub use self::rpc_common::SolanaRpcResponse;
#[cfg(test)]
/// Decodes one private serde wire type into the shared Transport error domain for staged DTO tests.
/// Decodes one private serde wire type into the shared Transport error domain for typed RPC adapters.
pub(crate) use self::rpc_common::decode_wire_json;
#[cfg(test)]
/// Parses a base58 public key without echoing its wire value into diagnostics for staged DTO tests.
/// Parses a base58 public key without echoing its wire value into diagnostics for typed RPC adapters.
pub(crate) use self::rpc_common::parse_wire_pubkey;
/// Functional category used by the audited Solana HTTP JSON-RPC registry.
pub use self::rpc_method::HttpRpcCategory;