From 4710adfc515933ebfa3ffb8cad860523bb421efa Mon Sep 17 00:00:00 2001 From: Ben DiFrancesco Date: Fri, 24 Apr 2020 22:04:59 -0400 Subject: [PATCH] Move Dai contract ABI to a folder in the project root --- {test => abi}/dai.json | 0 test/helpers.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {test => abi}/dai.json (100%) diff --git a/test/dai.json b/abi/dai.json similarity index 100% rename from test/dai.json rename to abi/dai.json diff --git a/test/helpers.js b/test/helpers.js index aaf0023..66c8a2f 100644 --- a/test/helpers.js +++ b/test/helpers.js @@ -1,5 +1,5 @@ const { web3 } = require('@openzeppelin/test-environment'); -const daiAbi = require('./dai.json').abi; +const daiAbi = require('../abi/dai.json').abi; const daiFunder = process.env.DAI_FUNDER; const daiAddress = process.env.DAI_ADDR;