Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
Bump version to 0.5.21
Browse files Browse the repository at this point in the history
  • Loading branch information
rkalis committed Jan 20, 2022
1 parent 1ddff12 commit 163e06d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "truffle-plugin-verify",
"version": "0.5.20",
"version": "0.5.21",
"description": "Verify your deployed smart contracts on Etherscan from the Truffle CLI",
"repository": "https://github.com/rkalis/truffle-plugin-verify",
"main": "verify.js",
Expand Down
2 changes: 1 addition & 1 deletion verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const parseConfig = async (config) => {
const apiKey = getApiKey(config, apiUrl, logger)

enforce(config._.length > 1, 'No contract name(s) specified', logger)
enforce(networkId !== "*",'network_id bypassed with "*" in truffle-config.js.',logger)
enforce(networkId !== '*', 'network_id bypassed with "*" in truffle-config.js.', logger)

const projectDir = config.working_directory
const contractsBuildDir = config.contracts_build_directory
Expand Down

0 comments on commit 163e06d

Please sign in to comment.