This repository was archived by the owner on Apr 8, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
bindings/rust/evmc-vm/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ pub type Uint256 = ffi::evmc_uint256be;
1212/// EVMC message (call) kind.
1313#[ derive( Debug , PartialEq ) ]
1414pub enum MessageKind {
15- Call ,
16- CallCode ,
17- DelegateCall ,
18- Create ,
15+ Call ,
16+ CallCode ,
17+ DelegateCall ,
18+ Create ,
1919}
2020
2121/// EVMC message (call) flags.
@@ -67,10 +67,7 @@ mod tests {
6767 #[ test]
6868 fn message_kind ( ) {
6969 assert_eq ! ( MessageKind :: Call , ffi:: evmc_call_kind:: EVMC_CALL ) ;
70- assert_eq ! (
71- MessageKind :: CallCode ,
72- ffi:: evmc_call_kind:: EVMC_CALLCODE
73- ) ;
70+ assert_eq ! ( MessageKind :: CallCode , ffi:: evmc_call_kind:: EVMC_CALLCODE ) ;
7471 assert_eq ! (
7572 MessageKind :: DelegateCall ,
7673 ffi:: evmc_call_kind:: EVMC_DELEGATECALL
You can’t perform that action at this time.
0 commit comments