Remove unused imports

This commit is contained in:
Matija Petrunic 2020-04-10 13:39:55 +02:00
parent 1653ea340e
commit c4212027d0
2 changed files with 2 additions and 3 deletions

View File

@ -3,3 +3,4 @@ export const NOISE_MSG_MAX_LENGTH_BYTES_WITHOUT_TAG = NOISE_MSG_MAX_LENGTH_BYTES
export const DUMP_SESSION_KEYS = true;

View File

@ -6,8 +6,6 @@ import {KeyPair} from "./@types/libp2p";
import {bytes, bytes32} from "./@types/basic";
import {Hkdf, INoisePayload} from "./@types/handshake";
import {pb} from "./proto/payload";
import {sessionKeyLogger} from "./logger"
import {DUMP_SESSION_KEYS} from "./constants"
const NoiseHandshakePayloadProto = pb.NoiseHandshakePayload;