Skip to content

Commit

Permalink
- raise gas limit for vote tx to account for byte gas cost
Browse files Browse the repository at this point in the history
  • Loading branch information
StrathCole committed Jul 3, 2024
1 parent 80b23f0 commit e13ad1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feeder/src/vote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export async function processVote(
logger.info(`[PREVOTE] msg: ${JSON.stringify(msgs)}\n`)
const tx = await wallet.createAndSignTx({
msgs,
fee: new Fee((1 + msgs.length) * 50000, []),
fee: new Fee((1 + msgs.length) * 100_000, []),
memo: `${packageInfo.name}@${packageInfo.version}`,
})

Expand Down

0 comments on commit e13ad1f

Please sign in to comment.