Skip to content

Commit

Permalink
fix: threshold must be a bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
katelynsills authored and michaelfig committed Aug 17, 2021
1 parent 37f18c2 commit 102da87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vats/src/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function buildRootObject(vatPowers, vatParameters) {
const meteringConfig = {
incrementBy: 25_000_000n,
initial: 50_000_000n,
threshold: 25_000_000,
threshold: 25_000_000n,
price: {
feeNumerator: 1n,
computronDenominator: 1n, // default is just one-to-one
Expand Down

0 comments on commit 102da87

Please sign in to comment.