diff --git a/Cargo.lock b/Cargo.lock index 07d24fe..f642094 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1789,7 +1789,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -2064,7 +2064,7 @@ dependencies = [ [[package]] name = "nekoton" version = "0.13.1" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "async-trait", @@ -2108,7 +2108,7 @@ dependencies = [ [[package]] name = "nekoton-abi" version = "0.13.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "base64 0.13.1", @@ -2135,7 +2135,7 @@ dependencies = [ [[package]] name = "nekoton-contracts" version = "0.13.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "nekoton-abi", @@ -2152,7 +2152,7 @@ dependencies = [ [[package]] name = "nekoton-derive" version = "0.13.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "either", "proc-macro2", @@ -2163,7 +2163,7 @@ dependencies = [ [[package]] name = "nekoton-jetton" version = "0.13.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "lazy_static", @@ -2180,7 +2180,7 @@ dependencies = [ [[package]] name = "nekoton-proto" version = "0.1.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "nekoton-abi", @@ -2192,7 +2192,7 @@ dependencies = [ [[package]] name = "nekoton-utils" version = "0.13.0" -source = "git+https://github.com/broxus/nekoton.git#c7bdb8816cfc540134a008be36629aeb1a1ef89a" +source = "git+https://github.com/broxus/nekoton.git#c6301a91bc9c631e570d013cfd89856c7fa6fcbe" dependencies = [ "anyhow", "base64 0.13.1", @@ -3656,7 +3656,7 @@ dependencies = [ [[package]] name = "ton_executor" version = "1.15.54" -source = "git+https://github.com/broxus/ton-labs-executor#1c63aa953462822397a3b50f260e294653e9caed" +source = "git+https://github.com/broxus/ton-labs-executor#b299a0fc8f3c3ecc28e8e38a9c014be56d4ce52d" dependencies = [ "anyhow", "log", @@ -3669,7 +3669,7 @@ dependencies = [ [[package]] name = "ton_types" version = "1.10.2" -source = "git+https://github.com/broxus/ton-labs-types#3324562d7ff1ebec66d996128573966c1b53862b" +source = "git+https://github.com/broxus/ton-labs-types#8556b60547a20f16d50abcab084479d0c9db3756" dependencies = [ "anyhow", "base64 0.13.1", @@ -3691,7 +3691,7 @@ dependencies = [ [[package]] name = "ton_vm" version = "1.8.29" -source = "git+https://github.com/broxus/ton-labs-vm.git#3bb002f54daaa039c2450af32a29e969d2dca66c" +source = "git+https://github.com/broxus/ton-labs-vm.git#211bd88f46fa257ac4b939447f209465d3e201e1" dependencies = [ "anyhow", "ed25519", diff --git a/client/src/lib.rs b/client/src/lib.rs index e10a9bb..6351a32 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -409,7 +409,7 @@ where function .clone() - .run_local(&SimpleClock, state.account, input) + .run_local(&SimpleClock, state.account, input, Default::default()) .map(Some) } @@ -550,7 +550,7 @@ where let result = function .clone() - .run_local(&SimpleClock, state.account, input) + .run_local(&SimpleClock, state.account, input, Default::default()) .map(Some)?; Ok(result) }