fix: import fixes

This commit is contained in:
asiaziola
2022-12-12 10:29:25 +01:00
parent 402e6fc233
commit 5bc974be74
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import Transaction from 'arweave/node/lib/transaction';
import { Warp } from 'core/Warp';
import { Warp } from '../core/Warp';
import { ArWallet } from './deploy/CreateContract';
export type SigningFunction = (tx: Transaction) => Promise<void>;

View File

@@ -11,7 +11,7 @@ import { GW_TYPE } from '../InteractionsLoader';
import { TagsParser } from './TagsParser';
import { WasmSrc } from './wasm/WasmSrc';
import { WarpEnvironment } from '../../Warp';
import { SortKeyCache } from 'cache/SortKeyCache';
import { SortKeyCache } from '../../../cache/SortKeyCache';
const supportedSrcContentTypes = ['application/javascript', 'application/wasm'];