Add a flag to simulateTransaction to use most recent blockhash

This commit is contained in:
Justin Starry
2021-05-25 13:01:21 -07:00
committed by Michael Vines
parent 4eb6deee2d
commit 96cef5260c
3 changed files with 7 additions and 1 deletions

View File

@ -28,6 +28,8 @@ pub struct RpcSendTransactionConfig {
pub struct RpcSimulateTransactionConfig {
#[serde(default)]
pub sig_verify: bool,
#[serde(default)]
pub use_most_recent_blockhash: bool,
#[serde(flatten)]
pub commitment: Option<CommitmentConfig>,
pub encoding: Option<UiTransactionEncoding>,