pub fn call_execute_raw<A, S, Q>(
    instance: &mut Instance<A, S, Q>,
    env: &[u8],
    info: &[u8],
    msg: &[u8]
) -> VmResult<Vec<u8>>where
    A: BackendApi + 'static,
    S: Storage + 'static,
    Q: Querier + 'static,
Expand description

Calls Wasm export “execute” and returns raw data from the contract. The result is length limited to prevent abuse but otherwise unchecked.