Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed argument check error in Move language #4007

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
80 changes: 41 additions & 39 deletions Cargo.lock

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -333,31 +333,31 @@ log4rs = { version = "1.2.0", features = ["background_rotation", "gzip"] }
lru = "0.7.8"
merkletree = { version = "0.22.1" }
mirai-annotations = "1.10.1"
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-bytecode-source-map = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-bytecode-verifier = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-cli = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-disassembler = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-docgen = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-ir-compiler = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-ir-types = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-model = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-package = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-prover = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-prover-test-utils = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-resource-viewer = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-stdlib = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-transactional-test-runner = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-unit-test = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49", features = ["table-extension"] }
move-vm-runtime = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-vm-types = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-table-extension = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49" }
move-vm-test-utils = { git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49", features = ["table-extension"] }
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-bytecode-source-map = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-bytecode-verifier = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-cli = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-command-line-common = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-compiler = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-core-types = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-coverage = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-disassembler = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-docgen = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-errmapgen = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-ir-compiler = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-ir-types = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-model = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-package = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-prover = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-prover-test-utils = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-resource-viewer = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-stdlib = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-transactional-test-runner = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-unit-test = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249", features = ["table-extension"] }
move-vm-runtime = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-vm-types = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-table-extension = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249" }
move-vm-test-utils = { git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249", features = ["table-extension"] }

names = { version = "0.14.0", default-features = false }
network-api = { path = "network/api", package = "network-api" }
Expand Down Expand Up @@ -522,7 +522,7 @@ unsigned-varint = { version = "0.6.0", features = [
"futures",
"asynchronous_codec",
] }
vm = { package = "move-binary-format", git = "https://github.com/starcoinorg/move", rev = "127584f4cb1e2b4cd650f1e6c317250f5fccca49", features = [
vm = { package = "move-binary-format", git = "https://github.com/starcoinorg/move", rev = "13bd7a8a279f1aecb4dc1e9c94e42da512320249", features = [
"fuzzing",
] }
vm-status-translator = { path = "vm/vm-status-translator" }
Expand Down
2 changes: 2 additions & 0 deletions cmd/db-exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ starcoin-transaction-builder = { workspace = true }
starcoin-types = { workspace = true }
starcoin-vm-types = { workspace = true }
starcoin-vm-runtime = { workspace = true }
starcoin-abi-decoder = { workspace = true }
futures = { workspace = true }
rayon = { workspace = true }
num_cpus = { workspace = true }
chrono = { workspace = true }

[package]
authors = { workspace = true }
Expand Down
119 changes: 0 additions & 119 deletions cmd/db-exporter/src/cmd_batch_execution.rs

This file was deleted.

Loading
Loading