mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
Add field names to pallet Event variants (#10184)
* Changed named fields to struct variants * Fixed errors. * Made adjustments as per `cargo +nightly fmt`. * Update frame/uniques/src/lib.rs Co-authored-by: Alexander Theißen <alex.theissen@me.com> * Removed redundant comments for structs. * Moved frame-support to dev dependencies Co-authored-by: Alexander Theißen <alex.theissen@me.com>
This commit is contained in:
@@ -2157,10 +2157,10 @@ mod tests {
|
||||
},
|
||||
EventRecord {
|
||||
phase: Phase::Initialization,
|
||||
event: MetaEvent::Utility(pallet_utility::Event::BatchInterrupted(
|
||||
1,
|
||||
frame_system::Error::<Test>::CallFiltered.into()
|
||||
),),
|
||||
event: MetaEvent::Utility(pallet_utility::Event::BatchInterrupted {
|
||||
index: 1,
|
||||
error: frame_system::Error::<Test>::CallFiltered.into()
|
||||
},),
|
||||
topics: vec![],
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user