fix: revert remaining changed weights

This commit is contained in:
Tom French 2022-07-16 10:31:26 +01:00
parent c6335b4f57
commit 91967ef920
2 changed files with 2 additions and 2 deletions

View file

@ -116,7 +116,7 @@ function tableArbitrary(tableSchema, extraArbs, requiredKeys = []) {
return arb;
}
function makeTransaction({ splitFreq = 0.1, payeeIds } = {}) {
function makeTransaction({ splitFreq = 1, payeeIds } = {}) {
let payeeField = payeeIds
? { payee: fc.oneof(...payeeIds.map(id => fc.constant(id))) }
: null;

View file

@ -319,7 +319,7 @@ describe('transaction executors', () => {
fc
.asyncProperty(
arbs.makeTransactionArray({
splitFreq: 10,
splitFreq: 0.1,
payeeIds,
maxLength: 100
}),