From 42ff01fb3ba67cd3f4b64dbf67f261422964ab2a Mon Sep 17 00:00:00 2001 From: Jordi Baylina Date: Mon, 8 Jul 2019 14:33:37 +0200 Subject: [PATCH] Some format and fixes from the last version --- test/mimcspongecontract.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/test/mimcspongecontract.js b/test/mimcspongecontract.js index 1f50a50..a2e7394 100644 --- a/test/mimcspongecontract.js +++ b/test/mimcspongecontract.js @@ -1,4 +1,4 @@ -const TestRPC = require("ganache-cli"); +const ganache = require("ganache-cli"); const Web3 = require("web3"); const chai = require("chai"); const mimcGenContract = require("../src/mimcsponge_gencontract.js"); @@ -17,20 +17,10 @@ describe("MiMC Sponge Smart contract test", () => { let accounts; before(async () => { - testrpc = TestRPC.server({ - ws: true, - gasLimit: 5800000, - total_accounts: 10, - }); - - testrpc.listen(8546, "127.0.0.1"); - - web3 = new Web3("ws://127.0.0.1:8546"); + web3 = new Web3(ganache.provider(), null, { transactionConfirmationBlocks: 1 }); accounts = await web3.eth.getAccounts(); }); - after(async () => testrpc.close()); - it("Should deploy the contract", async () => { const C = new web3.eth.Contract(mimcGenContract.abi);