Skip to content

Commit

Permalink
re-export ExitRevert
Browse files Browse the repository at this point in the history
  • Loading branch information
nanocryk committed Nov 18, 2021
1 parent 27d62f9 commit c765b12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions primitives/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ use sp_std::vec::Vec;

pub use evm::backend::{Basic as Account, Log};
pub use precompile::{
Context, ExitError, ExitSucceed, LinearCostPrecompile, Precompile, PrecompileFailure,
PrecompileOutput, PrecompileResult, PrecompileSet,
Context, ExitError, ExitRevert, ExitSucceed, LinearCostPrecompile, Precompile,
PrecompileFailure, PrecompileOutput, PrecompileResult, PrecompileSet,
};

#[derive(Clone, Eq, PartialEq, Encode, Decode, Default)]
Expand Down
2 changes: 1 addition & 1 deletion primitives/evm/src/precompile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

pub use evm::{
executor::stack::{PrecompileFailure, PrecompileOutput, PrecompileSet},
Context, ExitError, ExitSucceed,
Context, ExitError, ExitRevert, ExitSucceed,
};
use sp_std::vec::Vec;

Expand Down

0 comments on commit c765b12

Please sign in to comment.