Skip to content

Commit

Permalink
Fix types import
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Wilson committed Oct 28, 2022
1 parent ec071d6 commit 2e4d826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2e4d826

Please sign in to comment.