Skip to content

Commit

Permalink
fix: publish when reward==0
Browse files Browse the repository at this point in the history
  • Loading branch information
nom4dv3 committed Feb 27, 2024
1 parent 99c7831 commit b0ac76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cle-cli/src/commands/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function publish(options: PublishOptions) {
logger.warn('[-] BOUNTY REWARD IS NOT A VALID NUMBER.')
logDivider()
}
const newBountyRewardPerTrigger = Number(bountyRewardPerTrigger) || 0.05
const newBountyRewardPerTrigger = Number(bountyRewardPerTrigger)

const cleYaml = loadYamlFromPath(yamlPath)
if (!cleYaml) {
Expand Down

0 comments on commit b0ac76b

Please sign in to comment.