casper_executor_wasm_common/
entry_point.rs

1/// The caller must cover cost.
2///
3/// This is the default mode in VM2 runtime.
4pub const ENTRY_POINT_PAYMENT_CALLER: u8 = 0;
5/// Will cover cost to execute self but not cost of any subsequent invoked contracts
6pub const ENTRY_POINT_PAYMENT_DIRECT_INVOCATION_ONLY: u8 = 1;
7/// will cover cost to execute self and the cost of any subsequent invoked contracts
8pub const ENTRY_POINT_PAYMENT_SELF_ONWARD: u8 = 2;