Skip to content
This repository was archived by the owner on Jun 21, 2020. It is now read-only.

Commit 58b3d63

Browse files
authored
Merge branch 'develop' into toolchain
2 parents 5ccc0e8 + c383123 commit 58b3d63

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.drone.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ steps:
108108
from_secret: password
109109
commands:
110110
- cd discovery-docker-network/enigma-core
111-
- sed -i "s/-vv/-v/" start_core.bash && sed -i "s/-vv/-v/" start_km.bash
112111
- echo $PASSWORD | docker login -u $USERNAME --password-stdin
113112
- if [[ ${DRONE_BRANCH} == "master" ]]; then export TAG=latest; else export TAG=develop; fi
114113
- docker build --build-arg GIT_BRANCH_CORE=$DRONE_BRANCH --build-arg SGX_MODE=HW -t enigmampc/enigma_core_hw:$TAG --no-cache .

enigma-tools-m/src/primitives/km_primitives.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl PrincipalMessage {
6565
let mut to_sign = Vec::with_capacity(3);
6666
match &self.data {
6767
PrincipalMessageType::EncryptedResponse(v) => to_sign.push(v.clone()),
68-
PrincipalMessageType::Request => (), // If the request is empty we don't need to sign on it.
68+
PrincipalMessageType::Request => (),
6969
PrincipalMessageType::Response(_) => unreachable!(), // This can't be reached because we check if it's a response before.
7070
}
7171
to_sign.push(self.pubkey.to_vec());

0 commit comments

Comments
 (0)