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

Remove old and unused moveth move tests #922

Open
wants to merge 1 commit into
base: feature/trusted-relayer
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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

This file was deleted.

10 changes: 8 additions & 2 deletions protocol-units/bridge/setup/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use bridge_service::chains::ethereum::{
use hex::ToHex;
use std::io::BufRead;
use std::{
env,
io::Write,
process::{Command, Stdio},
env
};

// Proxy contract to be able to call bridge contract.
Expand Down Expand Up @@ -258,7 +258,13 @@ pub fn init_movement_node(config: &mut MovementConfig) -> Result<(), anyhow::Err
pub fn deploy_on_movement_framework(config: &mut MovementConfig) -> Result<(), anyhow::Error> {
tracing::info!("Before compile move modules");
let compile_output = Command::new("movement")
.args(&["move", "compile", "--package-dir", "protocol-units/bridge/move-modules/"])
.args(&[
"move",
"compile",
"--package-dir",
"protocol-units/bridge/move-modules/",
"--skip-fetch-latest-git-deps",
])
.stdout(Stdio::piped())
.stderr(Stdio::piped())
.output()?;
Expand Down
Loading