Struct solana_test_validator::TestValidator
source · [−]pub struct TestValidator { /* private fields */ }Implementations
sourceimpl TestValidator
impl TestValidator
sourcepub fn with_no_fees(
mint_address: Pubkey,
faucet_addr: Option<SocketAddr>,
socket_addr_space: SocketAddrSpace
) -> Self
pub fn with_no_fees(
mint_address: Pubkey,
faucet_addr: Option<SocketAddr>,
socket_addr_space: SocketAddrSpace
) -> Self
Create and start a TestValidator with no transaction fees and minimal rent.
Faucet optional.
This function panics on initialization failure.
sourcepub fn with_custom_fees(
mint_address: Pubkey,
target_lamports_per_signature: u64,
faucet_addr: Option<SocketAddr>,
socket_addr_space: SocketAddrSpace
) -> Self
pub fn with_custom_fees(
mint_address: Pubkey,
target_lamports_per_signature: u64,
faucet_addr: Option<SocketAddr>,
socket_addr_space: SocketAddrSpace
) -> Self
Create and start a TestValidator with custom transaction fees and minimal rent.
Faucet optional.
This function panics on initialization failure.
sourcepub fn tpu(&self) -> &SocketAddr
pub fn tpu(&self) -> &SocketAddr
Return the validator’s TPU address
sourcepub fn gossip(&self) -> &SocketAddr
pub fn gossip(&self) -> &SocketAddr
Return the validator’s Gossip address
sourcepub fn rpc_pubsub_url(&self) -> String
pub fn rpc_pubsub_url(&self) -> String
Return the validator’s JSON RPC PubSub URL
sourcepub fn vote_account_address(&self) -> Pubkey
pub fn vote_account_address(&self) -> Pubkey
Return the validator’s vote account address
sourcepub fn rpc_client(&self) -> (RpcClient, Hash, FeeCalculator)
👎 Deprecated since 1.9.0: Please use get_rpc_client instead
pub fn rpc_client(&self) -> (RpcClient, Hash, FeeCalculator)
Please use get_rpc_client instead
Return an RpcClient for the validator. As a convenience, also return a recent blockhash and associated fee calculator
sourcepub fn get_rpc_client(&self) -> RpcClient
pub fn get_rpc_client(&self) -> RpcClient
Return an RpcClient for the validator.
sourcepub fn get_async_rpc_client(&self) -> RpcClient
pub fn get_async_rpc_client(&self) -> RpcClient
Return a nonblocking RpcClient for the validator.
pub fn join(self)
pub fn cluster_info(&self) -> Arc<ClusterInfo>
pub fn bank_forks(&self) -> Arc<RwLock<BankForks>>
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for TestValidator
impl Send for TestValidator
impl Sync for TestValidator
impl Unpin for TestValidator
impl !UnwindSafe for TestValidator
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> FutureExt for T
impl<T> FutureExt for T
fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message T in a tonic::Request
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message T in a tonic::Request
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> TupleTree<T, ()> for T
impl<T> TupleTree<T, ()> for T
const SIZE: Size = Size{degree: 0, descendants: 0,}
fn descendants(_indirect_level: usize) -> usize
fn height() -> usize
fn preorder(self, f: &mut impl FnMut(Visit<T>))
fn preorder_with_size_hint(self, f: &mut impl FnMut(Visit<T>, Size))
fn postorder(self, f: &mut impl FnMut(Visit<T>))
fn postorder_with_size_hint(self, f: &mut impl FnMut(Visit<T>, Size))
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more