This repository was archived by the owner on Jun 21, 2020. It is now read-only.
File tree 2 files changed +1
-2
lines changed
enigma-tools-m/src/primitives
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ steps:
108
108
from_secret : password
109
109
commands :
110
110
- cd discovery-docker-network/enigma-core
111
- - sed -i "s/-vv/-v/" start_core.bash && sed -i "s/-vv/-v/" start_km.bash
112
111
- echo $PASSWORD | docker login -u $USERNAME --password-stdin
113
112
- if [[ ${DRONE_BRANCH} == "master" ]]; then export TAG=latest; else export TAG=develop; fi
114
113
- docker build --build-arg GIT_BRANCH_CORE=$DRONE_BRANCH --build-arg SGX_MODE=HW -t enigmampc/enigma_core_hw:$TAG --no-cache .
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl PrincipalMessage {
65
65
let mut to_sign = Vec :: with_capacity ( 3 ) ;
66
66
match & self . data {
67
67
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 => ( ) ,
69
69
PrincipalMessageType :: Response ( _) => unreachable ! ( ) , // This can't be reached because we check if it's a response before.
70
70
}
71
71
to_sign. push ( self . pubkey . to_vec ( ) ) ;
You can’t perform that action at this time.
0 commit comments