Returns the call kind of the (internal) transaction
function simCallKind() internal returns (enum SimCallKind kind)
Return Values
Name | Type | Description |
---|---|---|
kind | enum SimCallKind | the call instruction: call, staticcall, delegatecall, callcode, create or create2. Ethereum transactions will be either call or create. |
Notes
- Scoped to the deepest currently executing internal transaction.