Skip to content

Commit

Permalink
fixing bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nninkovicSQA authored Oct 11, 2024
1 parent e771b7b commit 8a1b462
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ cargo +stable build --target wasm32-unknown-unknown --release
cp target/wasm32-unknown-unknown/release/sputnik_staking.wasm ./sputnik-staking/res/
cp target/wasm32-unknown-unknown/release/sputnikdao2.wasm ./sputnikdao2/res/
cp target/wasm32-unknown-unknown/release/sputnikdao_factory2.wasm ./sputnikdao-factory2/res/
cp target/wasm32-unknown-unknown/release/test_token.wasm ./test-token/res/
cp target/wasm32-unknown-unknown/release/test_token.wasm ./workspaces-rs-tests/res/
cp target/wasm32-unknown-unknown/release/test_token.wasm ./test-token/res/
2 changes: 1 addition & 1 deletion workspaces-rs-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ near-sdk = { version = "4.0.0-pre.4", features = ["unstable"] }
near-units = "0.2.0"
serde_json = "1.0"
tokio = { version = "1.14", features = ["full"] }
near-workspaces = { version = "0.10.0", features = ["unstable"] }
near-workspaces = { version = "0.10.0", features = ["unstable"] } as workspaces
sputnikdao2 = { path = "../sputnikdao2" }
sputnikdao-factory2 = { path = "../sputnikdao-factory2" }
3 changes: 3 additions & 0 deletions workspaces-rs-tests/tests/test_sputnikdao_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ use near_sdk::json_types::Base64VecU8;
use near_units::{parse_gas, parse_near};
use sputnikdao2::{Config, VersionedPolicy};
use std::str::FromStr;
use near_workspaces as workspaces;
use workspaces::types::{KeyType, SecretKey};
use workspaces::AccountId;
use workspaces::types::{KeyType, SecretKey};
use workspaces::AccountId;

Expand Down

0 comments on commit 8a1b462

Please sign in to comment.