Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eternauta1337 committed Mar 13, 2024
1 parent 28a64b0 commit 97d8ae8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ethernaut-interact-ui/src/prompts/fnERC20.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const storage = require('ethernaut-interact/src/internal/storage')
const fnPrompt = require('./fn')

module.exports = async function promptFnERC20() {
const abi = storage.findAbi('ERC20')
const abi = storage.findAbi('erc20')

return await fnPrompt({ abi })
}
2 changes: 1 addition & 1 deletion packages/ethernaut-interact-ui/src/prompts/paramsERC20.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const storage = require('ethernaut-interact/src/internal/storage')
const paramsPrompt = require('./params')

module.exports = async function promptParamsERC20({ fn }) {
const abi = storage.findAbi('ERC20')
const abi = storage.findAbi('erc20')

return await paramsPrompt({ abi, fn })
}
2 changes: 1 addition & 1 deletion packages/ethernaut-interact/src/tasks/token.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ require('../scopes/interact')
'Skip confirmation prompts, avoiding any type of interactivity',
)
.setAction(async ({ address, fn, params, value, noConfirm }) => {
const abi = storage.findAbi('ERC20')
const abi = storage.findAbi('erc20')

return await hre.run(
{ scope: 'interact', task: 'contract' },
Expand Down

0 comments on commit 97d8ae8

Please sign in to comment.