Skip to content

Commit

Permalink
Updated Lamington to work with latest EOS with table change that incl…
Browse files Browse the repository at this point in the history
…udes "next_key" in response.
  • Loading branch information
dallasjohnson committed Jan 19, 2020
1 parent 414ea23 commit e229323
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/init_blockchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rm -rf /mnt/dev/data
# run it in a background job such that docker run could continue
nodeos -e -p eosio -d /mnt/dev/data \
--config-dir /mnt/dev/config \
--max-transaction-time=50 \
--max-transaction-time=40 \
--http-validate-host=false \
--plugin eosio::producer_plugin \
--plugin eosio::producer_api_plugin \
Expand Down
2 changes: 2 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const assertRowsEqual = async <RowType>(
// @ts-ignore - Not sure how to add this extended method `equalInAnyOrder`?
chai.expect(result).to.deep.equalInAnyOrder({
rows: expected,
next_key: '',
more: false,
});
};
Expand All @@ -106,6 +107,7 @@ export const assertRowsEqualStrict = async <RowType>(

assert.deepStrictEqual(result, {
rows: expected,
next_key: '',
more: false,
});
};
Expand Down

0 comments on commit e229323

Please sign in to comment.