pub trait PostTransactions {
// Provided method
fn post_transactions() { ... }
}
Expand description
Provides a callback to execute logic before the all transactions.
Provided Methods§
Sourcefn post_transactions()
fn post_transactions()
Called after all transactions were applied but before on_finalize
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.