From 2e4d826aa096db87f30a218fc826d6a698cb4460 Mon Sep 17 00:00:00 2001 From: Luke Wilson Date: Fri, 28 Oct 2022 11:24:49 +0100 Subject: [PATCH] Fix types import --- package.json | 2 +- src/instance.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 915f069..eaa0094 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@terran-one/cosmwasm-vm-js", - "version": "0.2.13", + "version": "0.2.14", "license": "MIT", "author": "TerranOne", "main": "dist/index.js", diff --git a/src/instance.ts b/src/instance.ts index 2845acd..cbe9b7c 100644 --- a/src/instance.ts +++ b/src/instance.ts @@ -3,7 +3,7 @@ import { bech32, BechLib } from 'bech32'; import { Region } from './memory'; import { ecdsaRecover, ecdsaVerify } from 'secp256k1'; import { IBackend, Record } from './backend'; -import { Env, MessageInfo } from 'types'; +import { Env, MessageInfo } from './types'; import { toByteArray, toNumber } from './helpers/byte-array'; export const MAX_LENGTH_DB_KEY: number = 64 * 1024;