Skip to content

Commit

Permalink
Merge pull request #1674 from multiversx/interact-rename
Browse files Browse the repository at this point in the history
renamed interact-rs folder into interactor
  • Loading branch information
mihaicalinluca authored Jun 4, 2024
2 parents c5879c9 + 56ceb88 commit a2e4697
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ multiversx_sc::derive_imports!();
// cargo run snippets
// Add --overwrite if you want to overwrite existing snippets

// Additionally, we also have to update the interact-rs snippets manually to add relative paths:
// Additionally, we also have to update the interactor snippets manually to add relative paths:
// [dependencies.multiversx-sc-snippets]
// version = "0.50.3"
// path = "../../../../framework/snippets"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use crate::version_history;
static SNIPPETS_SOURCE_FILE_NAME: &str = "interactor_main.rs";
static SC_CONFIG_PATH: &str = "../sc-config.toml";
static FULL_PROXY_ENTRY: &str = r#"[[proxy]]
path = "interact-rs/src/proxy.rs"
path = "interactor/src/proxy.rs"
"#;
static PROXY_PATH: &str = "interact-rs/src/proxy.rs";
static PROXY_PATH: &str = "interactor/src/proxy.rs";

pub(crate) fn create_snippets_folder(snippets_folder_path: &str) {
// returns error if folder already exists, so we ignore the result
Expand Down
2 changes: 1 addition & 1 deletion framework/meta-lib/src/contract/meta_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use super::{
};

const OUTPUT_RELATIVE_PATH: &str = "../output";
const SNIPPETS_RELATIVE_PATH: &str = "../interact-rs";
const SNIPPETS_RELATIVE_PATH: &str = "../interactor";
const WASM_LIB_PATH: &str = "../wasm/src/lib.rs";
const WASM_NO_MANAGED_EI: &str = "wasm-no-managed-ei";
const WASM_NO_MANAGED_EI_LIB_PATH: &str = "../wasm-no-managed-ei/src/lib.rs";
Expand Down

0 comments on commit a2e4697

Please sign in to comment.