tNote about installing wasm32-unknown-unknown toolchain. - wasm-runtime - A wasm runtime
 (HTM) git clone https://git.parazyd.org/wasm-runtime
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 74eb493001e713d6233e3970de1344e986d88209
 (DIR) parent f87baa72e4447be535de9e5f64edd04095f5a500
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Wed,  9 Mar 2022 11:12:58 +0100
       
       Note about installing wasm32-unknown-unknown toolchain.
       
       Diffstat:
         M README.md                           |       1 +
         M src/runtime.rs                      |       2 +-
       
       2 files changed, 2 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/README.md b/README.md
       t@@ -4,6 +4,7 @@ wasm-runtime
        Experiments with WASM runtime.
        
        ```
       +$ rustup target add wasm32-unknown-unknown
        $ make
        ```
        
 (DIR) diff --git a/src/runtime.rs b/src/runtime.rs
       t@@ -20,7 +20,7 @@ const MEMORY: &str = "memory";
        /// Hardcoded entrypoint function of a contract
        pub const ENTRYPOINT: &str = "entrypoint";
        /// Gas limit for a contract
       -pub const GAS_LIMIT: u64 = 20000;
       +pub const GAS_LIMIT: u64 = 200000;
        
        pub struct Runtime {
            pub(crate) instance: Instance,