File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -190,18 +190,17 @@ extern "C" fn ibc_packet_ack(env_ptr: u32, msg_ptr: u32) -> u32;
190190extern " C" fn ibc_packet_timeout (env_ptr : u32 , msg_ptr : u32 ) -> u32 ;
191191```
192192
193- <<<<<<< HEAD
194- ` allocate ` /` deallocate ` allow the host to manage data within the Wasm VM. If
195- you're using Rust, you can implement them by simply
193+ <<<<<<< HEAD ` allocate ` /` deallocate ` allow the host to manage data within the
194+ Wasm VM. If you're using Rust, you can implement them by simply
196195[ re-exporting them from cosmwasm::exports] ( https://github.com/CosmWasm/cosmwasm/blob/v0.6.3/contracts/hackatom/src/lib.rs#L5 ) .
197- ` instantiate ` , ` execute ` and ` query ` must be defined by your contract.
198- =======
196+ ` instantiate ` , ` execute ` and ` query ` must be defined by your contract. =======
199197` allocate ` and ` deallocate ` allow the host to manage data within the Wasm VM. If
200198you're using Rust, you get them automatically by using the ` cosmwasm-std ` crate.
201199Your contract can define the other entrypoints using the
202200` cosmwasm_std::entry_point ` macro to get strong typing instead of raw memory
203201offsets.
204- >>>>>>> 7c4e518a (Disable abort feature)
202+
203+ > > > > > > > 7c4e518a (Disable abort feature)
205204
206205### Imports
207206
You can’t perform that action at this time.
0 commit comments