Skip to content

Commit 7af28ab

Browse files
committed
Adding running example for the CI
1 parent e1be389 commit 7af28ab

File tree

4 files changed

+10
-84
lines changed

4 files changed

+10
-84
lines changed

contracts_archive/ConvertLib.sol

-9
This file was deleted.

contracts_archive/MetaCoin.sol

-30
This file was deleted.

contracts_archive/MetaCoin2.sol

-35
This file was deleted.

migrations/2_deploy_contracts.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// const ConvertLib = artifacts.require("ConvertLib");
2-
// const MetaCoin = artifacts.require("MetaCoin");
3-
// const MetaCoin2 = artifacts.require("MetaCoin2");
1+
const ConvertLib = artifacts.require("ConvertLib");
2+
const MetaCoin = artifacts.require("MetaCoin");
3+
const MetaCoin2 = artifacts.require("MetaCoin2");
44
// const DosOneFunc = artifacts.require("DosOneFunc");
55
// const Dynamic = artifacts.require("Dynamic");
66
// const HTDD_contract = artifacts.require("HTDD_contract");
@@ -98,14 +98,14 @@
9898
// const Vat = artifacts.require("Vat");
9999
// const Fomp = artifacts.require("Fomp");
100100
// const SpiritCoin = artifacts.require("UMAFarmingMar");
101-
const GFC = artifacts.require("GFC");
101+
// const GFC = artifacts.require("GFC");
102102

103103
module.exports = async function (deployer) {
104-
// deployer.deploy(ConvertLib);
105-
// deployer.link(ConvertLib, MetaCoin);
106-
// deployer.deploy(MetaCoin);
107-
// deployer.link(ConvertLib, MetaCoin2);
108-
// deployer.deploy(MetaCoin2);
104+
deployer.deploy(ConvertLib);
105+
deployer.link(ConvertLib, MetaCoin);
106+
deployer.deploy(MetaCoin);
107+
deployer.link(ConvertLib, MetaCoin2);
108+
deployer.deploy(MetaCoin2);
109109
//
110110
// deployer.deploy(DosOneFunc);
111111
// deployer.deploy(Dynamic);
@@ -206,5 +206,5 @@
206206
// deployer.deploy(Vat);
207207
// deployer.deploy(Fomp, accounts[0]);
208208
// deployer.deploy(SpiritCoin, accounts[0], accounts[1]);
209-
deployer.deploy(GFC, 1, "","");
209+
// deployer.deploy(GFC, 1, "","");
210210
};

0 commit comments

Comments
 (0)