async fn apply_transactions(
overlay: &BlockchainOverlayPtr,
verifying_block_height: u32,
block_target: u32,
txs: &[Transaction],
tree: &mut MerkleTree,
) -> Result<()>
Expand description
Apply given set of Transaction
in sequence, without formal verification.
In case any of the transactions fail, they will be returned to the caller as an error.
Additionally, their hash is appended to the provided Merkle tree.