Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
641 changes: 641 additions & 0 deletions contracts/ChannelManager.sol

Large diffs are not rendered by default.

637 changes: 0 additions & 637 deletions contracts/LedgerChannel.sol

This file was deleted.

6 changes: 3 additions & 3 deletions migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var EC = artifacts.require("./ECTools.sol");
var LC = artifacts.require("./LedgerChannel.sol");
var CM = artifacts.require("./ChannelManager.sol");

module.exports = async function(deployer) {
deployer.deploy(EC);
deployer.link(EC, LC);
deployer.deploy(LC);
deployer.link(EC, CM);
deployer.deploy(CM);
};
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
},
"dependencies": {
"buffer": "^5.0.7",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.1.5",
"truffle-hdwallet-provider-privkey": "^0.2.0",
Expand Down
932 changes: 466 additions & 466 deletions test/scenarios/CoopEthTokenTest.js

Large diffs are not rendered by default.

Loading