[][src]Function xpx_supercontracts_sdk::utils::ping

pub fn ping(msg: usize) -> FunctionResult

Send ping message to WasmVM. Successful result should be incremented value. Useful for most simple request/response message tests for WasmVM.

Examples

use xpx_supercontracts_sdk::utils::ping;
let respond = ping(10);
assert_eq!(respond.unwrap(), 11);