-
Notifications
You must be signed in to change notification settings - Fork 711
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52082bd
commit 00c66b8
Showing
5 changed files
with
6 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ authors = ["Massa Labs <[email protected]>"] | |
edition = "2021" | ||
|
||
[features] | ||
gas_calibration = ["massa_ledger_exports/testing", "parking_lot", "tempfile"] | ||
testing = ["massa_models/testing", "massa_ledger_exports/testing", "parking_lot", "tempfile", "mockall", "rand"] | ||
gas_calibration = ["tempfile"] | ||
testing = ["massa_models/testing", "tempfile", "mockall", "rand"] | ||
|
||
[dependencies] | ||
displaydoc = {workspace = true} | ||
|
@@ -22,7 +22,6 @@ massa_time = {workspace = true} | |
massa_storage = {workspace = true} | ||
massa_final_state = {workspace = true} | ||
massa_pos_exports = {workspace = true} | ||
massa_ledger_exports = {workspace = true, optional = true} | ||
massa_module_cache = {workspace = true} | ||
massa_versioning = {workspace = true} | ||
massa-sc-runtime = {workspace = true} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
// Copyright (c) 2023 MASSA LABS <[email protected]> | ||
|
||
use crate::tests::mock::{grpc_public_service, MockExecutionCtrl, MockPoolCtrl}; | ||
use crate::tests::mock::grpc_public_service; | ||
use massa_bootstrap::test_exports::{ | ||
get_dummy_block_id, get_random_async_pool_changes, get_random_executed_de_changes, | ||
get_random_executed_ops_changes, get_random_execution_trail_hash_change, | ||
get_random_ledger_changes, | ||
}; | ||
use massa_consensus_exports::test_exports::MockConsensusControllerImpl; | ||
use massa_consensus_exports::MockConsensusController; | ||
use massa_execution_exports::MockExecutionController; | ||
use massa_execution_exports::{ | ||
test_exports::get_random_eventstore, ExecutionOutput, SlotExecutionOutput, | ||
}; | ||
|