1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::VmApiImpl;
use elrond_wasm::{
    api::{PrintApi, PrintApiImpl},
    formatter::FormatBufferIgnore,
};

impl PrintApi for VmApiImpl {
    type PrintApiImpl = VmApiImpl;

    fn print_api_impl() -> Self::PrintApiImpl {
        VmApiImpl {}
    }
}

impl PrintApiImpl for VmApiImpl {
    type Buffer = FormatBufferIgnore;
}