Browse Source

Some format and fixes from the last version

feature/pr-19
Jordi Baylina 4 years ago
parent
commit
42ff01fb3b
No known key found for this signature in database GPG Key ID: 7480C80C1BE43112
1 changed files with 2 additions and 12 deletions
  1. +2
    -12
      test/mimcspongecontract.js

+ 2
- 12
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);

Loading…
Cancel
Save