Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
arvid220u committed Aug 12, 2022
1 parent aaf3885 commit 6c64a6d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion daemon/crypto/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ constexpr auto DEFAULT_ROUND_DELAY_SECONDS = 60;
constexpr auto DEFAULT_SERVER_ADDRESS = "server1.anysphere.co:443";

// this commit hash will be automatically updated by gui/package.json.
constexpr auto RELEASE_COMMIT_HASH = "bf027e552c8103a83e8c1f206c4acbbd616ec120";
constexpr auto RELEASE_COMMIT_HASH = "aaf3885a6f95f864a2c1dbcb041a21036386b333";

// this is the number of friends that will be received from in each round
// (ideally, they can all be received in a single PIR request using batch PIR)
Expand Down
6 changes: 0 additions & 6 deletions gui/helpers/scripts/package-linux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,9 @@
// SPDX-License-Identifier: GPL-3.0-only
//

import { AfterPackContext, BuildResult, Arch } from "electron-builder";
import builder from "electron-builder";
import path from "path";
import { notarize } from "electron-notarize";
import { promisify } from "util";
import { exec as execNonPromisified } from "child_process";
import { exit } from "process";
import { config } from "./package-shared";
const exec = promisify(execNonPromisified);

// environment variable options:
// - LINUX_ARCH: TODO.
Expand Down
2 changes: 1 addition & 1 deletion gui/src/main/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { exit } from "process";
import path from "path";

// this commit hash will be automatically updated by gui/package.json.
export const RELEASE_COMMIT_HASH = "bf027e552c8103a83e8c1f206c4acbbd616ec120";
export const RELEASE_COMMIT_HASH = "aaf3885a6f95f864a2c1dbcb041a21036386b333";

export const PLIST_PATH = (): string => {
if (process.platform === "darwin" && process.env["HOME"] != null) {
Expand Down

0 comments on commit 6c64a6d

Please sign in to comment.