Skip to content
This repository has been archived by the owner on Feb 2, 2025. It is now read-only.

Commit

Permalink
Updating to trueblocks-core v0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tjayrush committed Nov 25, 2022
1 parent 40a58ae commit f4b398e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/sdk/generated_ts/paths/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ export function getList(
count?: boolean,
appearances?: boolean,
silent?: boolean,
firstRecord?: number,
maxRecords?: number,
firstBlock?: number,
lastBlock?: number,
chain: string,
noHeader?: boolean,
fmt?: string,
Expand Down
1 change: 1 addition & 0 deletions src/sdk/generated_ts/paths/monitors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export function getMonitors(
parameters?: {
addrs?: address[],
clean?: boolean,
list?: boolean,
watch?: boolean,
sleep?: number,
delete?: boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/generated_ts/paths/when.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function getWhen(
list?: boolean,
timestamps?: boolean,
count?: boolean,
repair?: number,
repair?: boolean,
check?: boolean,
chain: string,
noHeader?: boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/ui/datastore/worker/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function fetchTransactions(chain: string, addresses: Address[], loaded: nu
// reversed: false,
relevant: true,
// summarize_by: 'monthly',
firstRecord: loaded,
firstRecord: loaded + 1,
maxRecords: (() => {
if (loaded < 20) return 10;
if (loaded < 800) return 239;
Expand Down

0 comments on commit f4b398e

Please sign in to comment.