Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add util functions for getting output data #509

Merged
merged 1 commit into from
Jun 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions crates/primitives/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,28 @@ impl ExecutionResult {
}
}

/// Returns the output data of the execution.
///
/// Returns `None` if the execution was halted.
pub fn output(&self) -> Option<&Bytes> {
match self {
Self::Success { output, .. } => Some(output.data()),
Self::Revert { output, .. } => Some(output),
_ => None,
}
}

/// Consumes the type and returns the output data of the execution.
///
/// Returns `None` if the execution was halted.
pub fn into_output(self) -> Option<Bytes> {
match self {
Self::Success { output, .. } => Some(output.into_data()),
Self::Revert { output, .. } => Some(output),
_ => None,
}
}

/// Consumes the type and returns logs, if execution is not successful, function will return empty vec.
pub fn into_logs(self) -> Vec<Log> {
match self {
Expand Down Expand Up @@ -87,6 +109,14 @@ impl Output {
Output::Create(data, _) => data,
}
}

/// Returns the output data of the execution output.
pub fn data(&self) -> &Bytes {
match self {
Output::Call(data) => data,
Output::Create(data, _) => data,
}
}
}

#[derive(Debug, Copy, Clone, PartialEq, Eq)]
Expand Down