mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 06:21:02 +00:00
let go fees (#1867)
This commit is contained in:
@@ -22,8 +22,6 @@ The process of generating a collation for a parachain is very parachain-specific
|
||||
|
||||
```rust
|
||||
pub struct Collation {
|
||||
/// Fees paid from the chain to the relay chain validators.
|
||||
pub fees: Balance,
|
||||
/// Messages destined to be interpreted by the Relay chain itself.
|
||||
pub upward_messages: Vec<UpwardMessage>,
|
||||
/// New validation code.
|
||||
|
||||
@@ -247,8 +247,6 @@ The execution and validation of parachain or parathread candidates produces a nu
|
||||
#[derive(PartialEq, Eq, Clone, Encode, Decode)]
|
||||
#[cfg_attr(feature = "std", derive(Debug, Default))]
|
||||
struct CandidateCommitments {
|
||||
/// Fees paid from the chain to the relay chain validators.
|
||||
fees: Balance,
|
||||
/// Messages directed to other paras routed via the relay chain.
|
||||
horizontal_messages: Vec<OutboundHrmpMessage>,
|
||||
/// Messages destined to be interpreted by the Relay chain itself.
|
||||
@@ -293,8 +291,6 @@ struct ValidationOutputs {
|
||||
horizontal_messages: Vec<OutboundHrmpMessage>,
|
||||
/// Upwards messages to the relay chain.
|
||||
upwards_messages: Vec<UpwardsMessage>,
|
||||
/// Fees paid to the validators of the relay-chain.
|
||||
fees: Balance,
|
||||
/// The new validation code submitted by the execution, if any.
|
||||
new_validation_code: Option<ValidationCode>,
|
||||
/// The number of messages processed from the DMQ.
|
||||
|
||||
Reference in New Issue
Block a user