From 7341293460e51632673935f6ff8c149ea3d4a90d Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Tue, 24 Sep 2024 10:52:22 -0400 Subject: [PATCH 1/2] feat: regen store createion height if its missing --- src/blockchain/DataStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockchain/DataStore.ts b/src/blockchain/DataStore.ts index 3cf8932..4aea6c2 100644 --- a/src/blockchain/DataStore.ts +++ b/src/blockchain/DataStore.ts @@ -445,7 +445,7 @@ export class DataStore { if (!cachedHeightInfo) { // If no cache, regenerate the cache - return this.cacheStoreCreationHeight(this.storeId); + return this.cacheStoreCreationHeight(); } // Parse the cached height and hash values From 6ec022a452afeefdbfab8a1050ca6a6bd902802d Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Tue, 24 Sep 2024 10:52:50 -0400 Subject: [PATCH 2/2] chore(release): 0.0.1-alpha.76 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73fdca2..21dcc7d 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.76](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.75...v0.0.1-alpha.76) (2024-09-24) + + +### Features + +* regen store createion height if its missing ([7341293](https://github.com/DIG-Network/dig-chia-sdk/commit/7341293460e51632673935f6ff8c149ea3d4a90d)) + ### [0.0.1-alpha.75](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.74...v0.0.1-alpha.75) (2024-09-24) diff --git a/package-lock.json b/package-lock.json index e3cfd60..bb875af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.75", + "version": "0.0.1-alpha.76", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.75", + "version": "0.0.1-alpha.76", "license": "ISC", "dependencies": { "@dignetwork/datalayer-driver": "^0.1.25", diff --git a/package.json b/package.json index 162cfb1..af385d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dignetwork/dig-sdk", - "version": "0.0.1-alpha.75", + "version": "0.0.1-alpha.76", "description": "", "type": "commonjs", "main": "./dist/index.js",