Skip to content

Commit

Permalink
fix reshare script
Browse files Browse the repository at this point in the history
  • Loading branch information
SvineruS committed Feb 26, 2024
1 parent 3af3217 commit 7fe550b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions relay/reshare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ fi


if [[ "$MPC_MEID" == "Kevin" || "$MPC_MEID" == "Lang" || "$MPC_MEID" == "Rory" ]]; then
CMD="go run main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meID $MPC_MEID"
CMD="go run cmd/main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meID $MPC_MEID"
elif [[ "$MPC_MEID" == "backup2" || "$MPC_MEID" == "Michael2" || "$MPC_MEID" == "Seth2" || "$MPC_MEID" == "Od2" ]]; then
CMD="go run main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meIDNew $MPC_MEID"
CMD="go run cmd/main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meIDNew $MPC_MEID"
elif [[ "$MPC_MEID" == "Andrey" ]]; then
CMD="go run main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meID Andrey -meIDNew Andrey2"
CMD="go run cmd/main.go -reshare -url $URL -partyIDs $OLD_PARTY -threshold 5 -partyIDsNew $NEW_PARTY -thresholdNew 5 -shareDir $SHARE_DIR -meID Andrey -meIDNew Andrey2"
else
echo "Error: MPC_MEID value does not match any condition"
exit 1
Expand Down

0 comments on commit 7fe550b

Please sign in to comment.