chore: linter fixes

This commit is contained in:
robal
2023-03-24 10:05:20 +01:00
parent a05e21497d
commit 027ed8c3e4
2 changed files with 2 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import { writeFileSync } from 'node:fs';
import { join } from 'node:path';
import path from 'path';
// import path from 'path';
// eslint-disable-next-line
export const writeImplementationFile = async (bindings: any, actions: any[]) => {

View File

@@ -37,9 +37,7 @@ describe('Testing the Rust WASM Profit Sharing Token', () => {
let wallet: JWKInterface;
let a = new Array();
a.push(0);
const initialState = new State(a);
const initialState = new State([0]);
let arweave: Arweave;
let arlocal: ArLocal;