Skip to content

Commit

Permalink
[flexiDAG] fixed mpm integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
welbon committed May 16, 2024
1 parent 85247e1 commit bfc6805
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev
starcoin-decrypt = { path = "commons/decrypt" }
starcoin-dev = { path = "vm/dev" }
starcoin-executor = { path = "executor" }
starcoin-framework = { git = "https://github.com/starcoinorg/starcoin-framework", rev = "2966e3f6a04aef43a0e29e0cfc04d2d11290716d" }
starcoin-framework = { git = "https://github.com/starcoinorg/starcoin-framework", rev = "79099c2d1c7a94ff26a7e85a29aa25a0f5965eaf" }
starcoin-genesis = { path = "genesis" }
starcoin-logger = { path = "commons/logger" }
starcoin-metrics = { path = "commons/metrics" }
Expand Down
4 changes: 2 additions & 2 deletions config/src/genesis_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ pub static G_TEST_CONFIG: Lazy<GenesisConfig> = Lazy::new(|| {
),
genesis_key_pair: Some((Arc::new(genesis_private_key), genesis_public_key)),
time_service_type: TimeServiceType::MockTimeService,
stdlib_version: StdlibVersion::Version(12),
stdlib_version: StdlibVersion::Latest,
dao_config: DaoConfig {
voting_delay: 60_000, // 1min
voting_period: 60 * 60 * 1000, // 1h
Expand All @@ -775,7 +775,7 @@ pub static G_DEV_CONFIG: Lazy<GenesisConfig> = Lazy::new(|| {
let mut gas_constant = G_TEST_GAS_CONSTANTS.clone();
gas_constant.min_price_per_gas_unit = 1;

let stdlib_version = StdlibVersion::Version(12);
let stdlib_version = StdlibVersion::Latest;
GenesisConfig {
genesis_block_parameter: GenesisBlockParameterConfig::Static(GenesisBlockParameter {
parent_hash: HashValue::sha3_256_of(b"starcoin_dev"),
Expand Down
Binary file modified vm/stdlib/compiled/12/11-12/stdlib.blob
Binary file not shown.

0 comments on commit bfc6805

Please sign in to comment.