Skip to content

Commit

Permalink
fix: removed unused variables and trying to fix the path
Browse files Browse the repository at this point in the history
  • Loading branch information
alenmestrov committed Dec 4, 2024
1 parent 038b49e commit 0b9dae5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/icp/proxy-contract/mock/external/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

cd "$(dirname $0)"

TARGET="${CARGO_TARGET_DIR:-../../../../target}"
TARGET="${CARGO_TARGET_DIR:-../../../../../target}"

rustup target add wasm32-unknown-unknown

Expand Down
2 changes: 1 addition & 1 deletion contracts/icp/proxy-contract/mock/ledger/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

cd "$(dirname $0)"

TARGET="${CARGO_TARGET_DIR:-../../../../target}"
TARGET="${CARGO_TARGET_DIR:-../../../../../target}"

rustup target add wasm32-unknown-unknown

Expand Down
4 changes: 2 additions & 2 deletions contracts/icp/proxy-contract/mock/ledger/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::cell::RefCell;

use candid::{CandidType, Deserialize, Principal};
use candid::{CandidType, Deserialize};
use ic_ledger_types::{
AccountIdentifier, BlockIndex, Memo, Timestamp, Tokens, TransferArgs, TransferError,
AccountIdentifier, BlockIndex, Tokens, TransferArgs, TransferError,
};

thread_local! {
Expand Down

0 comments on commit 0b9dae5

Please sign in to comment.