Skip to content

Commit

Permalink
Update to web3 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mshearer0 committed Apr 16, 2022
1 parent c5ddebd commit bd6129d
Show file tree
Hide file tree
Showing 12 changed files with 45,493 additions and 24,313 deletions.
4 changes: 2 additions & 2 deletions code/auction_dapp/backend/test/2_deedrepository.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract('DeedRepository', async (accounts) => {
});

it("It should register a deed with id: 123456789", async () => {
await instance.registerDeed(accounts[0], 123456789);
await instance.registerDeed(123456789,"test");
let ownerOfDeed = await instance.exists(123456789);
assert.equal(ownerOfDeed.valueOf(), true , `Result should be true`);
});
Expand Down Expand Up @@ -52,4 +52,4 @@ contract('DeedRepository', async (accounts) => {
});


});
});

0 comments on commit bd6129d

Please sign in to comment.