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

Common cleanup #210

Merged
merged 8 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 20 additions & 19 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions chain-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ version = "=0.54.6"
[dependencies.multiversx-sc-modules]
version = "=0.54.6"

[dependencies.transaction]
path = "../common/transaction"
[dependencies.operation]
path = "../common/operation"

[dependencies.setup-phase]
path = "../common/setup-phase"
2 changes: 1 addition & 1 deletion chain-config/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![no_std]

use multiversx_sc_modules::only_admin;
use transaction::StakeMultiArg;
use operation::aliases::StakeMultiArg;
use validator_rules::TokenIdAmountPair;

multiversx_sc::imports!();
Expand Down
16 changes: 8 additions & 8 deletions chain-config/wasm-chain-config-full/Cargo.lock

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

16 changes: 8 additions & 8 deletions chain-config/wasm-chain-config-view/Cargo.lock

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

16 changes: 8 additions & 8 deletions chain-config/wasm/Cargo.lock

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

4 changes: 2 additions & 2 deletions chain-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ path = "../chain-config"
[dependencies.proxies]
path = "../common/proxies"

[dependencies.transaction]
path = "../common/transaction"
[dependencies.operation]
path = "../common/operation"
2 changes: 1 addition & 1 deletion chain-factory/src/factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use proxies::{
fee_market_proxy::{FeeMarketProxy, FeeStruct},
header_verifier_proxy::HeaderverifierProxy,
};
use transaction::StakeMultiArg;
use operation::aliases::StakeMultiArg;
multiversx_sc::derive_imports!();

#[multiversx_sc::module]
Expand Down
2 changes: 1 addition & 1 deletion chain-factory/tests/chain_factory_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use multiversx_sc_scenario::{
use proxies::{
chain_config_proxy::ChainConfigContractProxy, chain_factory_proxy::ChainFactoryContractProxy,
};
use transaction::StakeMultiArg;
use operation::aliases::StakeMultiArg;

const FACTORY_ADDRESS: TestSCAddress = TestSCAddress::new("chain-factory");
const CODE_PATH: MxscPath = MxscPath::new("output/chain-factory.mxsc.json");
Expand Down
23 changes: 12 additions & 11 deletions chain-factory/wasm-chain-factory-full/Cargo.lock

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

Loading
Loading