diff --git a/CHANGELOG.md b/CHANGELOG.md index 07bed38..38b42fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.1-alpha.21](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.20...v0.0.1-alpha.21) (2024-09-16) + + +### Features + +* find any peer on the network with the store and or key ([d395e95](https://github.com/DIG-Network/dig-chia-sdk/commit/d395e95cb15b598008f54d3dddc1c870699eeb4e)) + ### [0.0.1-alpha.20](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.19...v0.0.1-alpha.20) (2024-09-16) diff --git a/package-lock.json b/package-lock.json index 49fe028..e4e234c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.20", + "version": "0.0.1-alpha.21", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.20", + "version": "0.0.1-alpha.21", "license": "ISC", "dependencies": { "bip39": "^3.1.0", diff --git a/package.json b/package.json index b6e86cc..05b08a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.20", + "version": "0.0.1-alpha.21", "description": "", "type": "commonjs", "main": "./dist/index.js", diff --git a/src/DigNetwork/DigNetwork.ts b/src/DigNetwork/DigNetwork.ts index 2b90501..a7d6071 100644 --- a/src/DigNetwork/DigNetwork.ts +++ b/src/DigNetwork/DigNetwork.ts @@ -160,7 +160,7 @@ export class DigNetwork { public static async findPeerWithStoreKey( storeId: string, rootHash: string, - key: string + key?: string ): Promise { const peerBlackList: string[] = []; const serverCoin = new ServerCoin(storeId);