Thomas Jay Rush

Results 283 comments of Thomas Jay Rush

> I'd add printing values, too: `chifra config settings.indexPath` => `/some/directory` It would make our docs and communication with the users easier, because instead of telling them to "check where...

Some learnings: 1) This problem only appears in the API mode, 2) This problem happens because of the `maxSlowQueries` setting which overrides `maxRecords` and will only deliver a maximum number...

Further conversation: tjayrush — Today at 6:11 AM Understood. Using cache is something you want to do regardless of this issue as the subsequent queries are significantly faster. If you...

**Upshot to those who are listening:** 1) use cache when using the API, 2) until the cache is populated, expect max of 50 records due to maxSlowQueries override (you can...

You can attempt to remove this limitation by adding a value to the file ``` $configPath//acctExport.toml ``` a value ``` [settings] max_slow_queries=1000000000 ``` or some other large value. You can...

This command shows the problem as there are 10 records prior to first block: ``` chifra export 0xf503017d7baf7fbc0fff7492b751025c6a78179b --first_block 10277780 --last_block 10278000 --max_records 10 ``` The result is no output....

In the next release `max_slow_queries` has been removed, so this behaviour should no longer be seen. Closing.

Just to remind myself, there are three reasons I made scrape config different than the base trueBlocks toml file 1) In the C++ code, some of the config items were...

I put a TODO comment in the source code and copied the code for the Viper way doing config files into the source. Search for the text "issue #2259" to...

Maybe also `chifra scrape --replace --pin --remote`