Skip to content

Commit

Permalink
replaced Token contract for open zeppelin ERC20
Browse files Browse the repository at this point in the history
  • Loading branch information
santisiri committed Dec 17, 2020
1 parent b912f63 commit d276b58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/molochV2-multitoken.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ chai
.should()

const Moloch = artifacts.require('./Moloch')
const Token = artifacts.require('./Token')
const Token = artifacts.require('./ERC20')

const revertMessages = {
onlyDelegate: 'not a delegate',
Expand Down
2 changes: 1 addition & 1 deletion test/molochV2.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const {
} = require('./test-utils')

const Moloch = artifacts.require('./Moloch')
const Token = artifacts.require('./Token')
const Token = artifacts.require('./ERC20')
const Submitter = artifacts.require('./Submitter') // used to test submit proposal return values

const revertMessages = {
Expand Down
2 changes: 1 addition & 1 deletion test/molochV2Events.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const {
} = require('./test-utils')

const Moloch = artifacts.require('./Moloch')
const Token = artifacts.require('./Token')
const Token = artifacts.require('./ERC20')
const Submitter = artifacts.require('./Submitter') // used to test submit proposal return values

const revertMessages = {
Expand Down

0 comments on commit d276b58

Please sign in to comment.