瀏覽代碼

ethereum: remove unused Schnorr references from tests

Leo 5 年之前
父節點
當前提交
f8b313cab8
共有 3 個文件被更改,包括 0 次插入4 次删除
  1. 0 0
      ethereum/contracts/.gitkeep
  2. 0 3
      ethereum/migrations/1_initial_migration.js
  3. 0 1
      ethereum/test/wormhole.js

+ 0 - 0
ethereum/contracts/.gitkeep


+ 0 - 3
ethereum/migrations/1_initial_migration.js

@@ -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

+ 0 - 1
ethereum/test/wormhole.js

@@ -1,4 +1,3 @@
-const Schnorr = artifacts.require("Schnorr");
 const Wormhole = artifacts.require("Wormhole");
 const WrappedAsset = artifacts.require("WrappedAsset");
 const ERC20 = artifacts.require("ERC20PresetMinterPauser");