pub struct SubmitpackageParams {
pub package: Vec<Value>,
pub maxfeerate: f64,
pub maxburnamount: f64,
}Expand description
Submit a package of raw transactions (serialized, hex-encoded) to local node. The package will be validated according to consensus and mempool policy rules. If any transaction passes, it will be accepted to mempool. This RPC is experimental and the interface may be unstable. Refer to doc/policy/packages.md for documentation on package policies. Warning: successful submission does not mean the transactions will propagate throughout the network.
Fields§
§package: Vec<Value>§maxfeerate: f64§maxburnamount: f64Trait Implementations§
Source§impl Debug for SubmitpackageParams
impl Debug for SubmitpackageParams
Auto Trait Implementations§
impl Freeze for SubmitpackageParams
impl RefUnwindSafe for SubmitpackageParams
impl Send for SubmitpackageParams
impl Sync for SubmitpackageParams
impl Unpin for SubmitpackageParams
impl UnsafeUnpin for SubmitpackageParams
impl UnwindSafe for SubmitpackageParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more