hive-p2p 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/parameters.mjs +0 -1
- package/index.mjs +1 -2
- package/package.json +1 -1
package/core/parameters.mjs
CHANGED
|
@@ -48,7 +48,6 @@ export const IDENTITY = {
|
|
|
48
48
|
PRIVATEKEY_LENGTH: 32, // length of private key | (ed25519) default: 32 bytes
|
|
49
49
|
SIGNATURE_LENGTH: 64, // length of signature | default: 64 bytes
|
|
50
50
|
}
|
|
51
|
-
if (!IDENTITY.ARE_IDS_HEX) IDENTITY.PUBLIC_PREFIX = 'P_'; // FOR SIMULTOR STRING IDS
|
|
52
51
|
|
|
53
52
|
export const TRANSPORTS = {
|
|
54
53
|
MAX_SDP_OFFERS: 3, // max SDP offers to create in advance | default: 3
|
package/index.mjs
CHANGED