Skip to content

Commit

Permalink
ethereum: remove unused Schnorr references from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Aug 15, 2020
1 parent 1094c2c commit f8b313c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Empty file removed ethereum/contracts/.gitkeep
Empty file.
3 changes: 0 additions & 3 deletions ethereum/migrations/1_initial_migration.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
const Schnorr = artifacts.require("Schnorr");
const WrappedAsset = artifacts.require("WrappedAsset");
const Wormhole = artifacts.require("Wormhole");

module.exports = async function (deployer) {
await deployer.deploy(Schnorr);
await deployer.deploy(WrappedAsset);
await deployer.link(Schnorr, Wormhole);
await deployer.deploy(Wormhole, {
keys: ["0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf"],
expiration_time: 0
Expand Down
1 change: 0 additions & 1 deletion ethereum/test/wormhole.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const Schnorr = artifacts.require("Schnorr");
const Wormhole = artifacts.require("Wormhole");
const WrappedAsset = artifacts.require("WrappedAsset");
const ERC20 = artifacts.require("ERC20PresetMinterPauser");
Expand Down

0 comments on commit f8b313c

Please sign in to comment.