Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Message queue reentrancy issue fix #37

Merged
merged 20 commits into from
Nov 24, 2023
Prev Previous commit
Next Next commit
Add trait error variant
Signed-off-by: Oliver Tale-Yazdi <[email protected]>
  • Loading branch information
ggwpez authored and claravanstaden committed Nov 24, 2023
commit 57f74bf52d437967ea88f2419319e8f8b8a835c4
2 changes: 2 additions & 0 deletions substrate/frame/support/src/traits/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ pub enum ExecuteOverweightError {
QueuePaused,
/// An unspecified error.
Other,
/// Another call is currently ongoing and prevents this call from executing.
RecursiveDisallowed,
}

/// Can service queues and execute overweight messages.
Expand Down