1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use elrond_wasm::api::SendApi;

use crate::VmApiImpl;

impl SendApi for VmApiImpl {
    type SendApiImpl = VmApiImpl;

    #[inline]
    fn send_api_impl() -> Self::SendApiImpl {
        VmApiImpl {}
    }
}