Skip to content

Commit

Permalink
fix(publish): bountyRewardPerTrigger incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
murongg committed Feb 22, 2024
1 parent e9570d6 commit ba21010
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) * 10 ** 9
const newBountyRewardPerTrigger = Number(bountyRewardPerTrigger) || 0.05

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

0 comments on commit ba21010

Please sign in to comment.