Rebuilding Transaction
Full Example
// let body = tx_parser.get_builder_body();
let body = tx_parser.get_builder_body_without_change();
let mut new_tx_builder = TxBuilder::new_core();
// manipulation of the `tx_builder_body` as needed here
new_tx_builder.tx_builder_body = body.clone();
new_tx_builder
// extra tx building methods as needed here
.complete_sync(None)
.unwrap();Last updated