Skip to content

Commit

Permalink
Fix post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidM-D committed Jul 18, 2024
1 parent 63c3b3b commit 46dec87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion chain-signatures/contract/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ use crypto_shared::{
use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize};
use near_sdk::collections::LookupMap;
use near_sdk::serde::{Deserialize, Serialize};
use near_sdk::{env, near_bindgen, AccountId, NearToken, Promise, PromiseOrValue, PublicKey};
use near_sdk::{
env, near_bindgen, AccountId, BorshStorageKey, NearToken, Promise, PromiseOrValue, PublicKey,
};
use near_sdk::{log, Gas};
use primitives::{
CandidateInfo, Candidates, ParticipantInfo, Participants, PkVotes, SignRequest, Votes,
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
cargo-watch
cargo-audit
sccache
gmp

# TODO Add podman + docker image dependencies
# TODO Add AWS-CLI and dummy credentials
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/chain-signatures/tests/actions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub async fn request_sign(
}))?,
gas: 300_000_000_000_000,
deposit: 1,
})],
}))],
}
.sign(&signer),
})
Expand Down Expand Up @@ -242,7 +242,7 @@ pub async fn request_sign_non_random(
}))?,
gas: 300_000_000_000_000,
deposit: 1,
})],
}))],
}
.sign(&signer),
})
Expand Down

0 comments on commit 46dec87

Please sign in to comment.