diff --git a/package.json b/package.json index f0eb879..19c02e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-contracts", - "version": "1.2.8", + "version": "1.2.9", "description": "An implementation of the SmartWeave smart contract protocol.", "types": "./lib/types/index.d.ts", "main": "./lib/cjs/index.js", diff --git a/src/utils/utils.ts b/src/utils/utils.ts index c112c4c..4e601ec 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -1,8 +1,8 @@ /* eslint-disable */ import cloneDeep from 'lodash/cloneDeep'; import copy from 'fast-copy'; -import {Buffer} from 'redstone-isomorphic'; -import {randomUUID} from "crypto"; +import { Buffer } from 'redstone-isomorphic'; +import { randomUUID } from 'crypto'; export const sleep = (ms: number): Promise => { return new Promise((resolve) => setTimeout(resolve, ms));