Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
almogdepaz pushed 56 commits to assert-height-to-hash-in-contains-block Chia-Network/chia-blockchain
- fixup installer workflow version coherence with poetry (#18997) 0d40f9f
- Merge commit '0d40f9f27dcef5ad235d516b793244aaa6a87720' into checkpoint/main_from_release_2.5.0_0d40f9f27dcef5ad235d5... 225a73d
- Update GUI pin to 'b2caac88dc2ced4d4e2a904456506bc7318a5434' bb784cf
- checkpoint: into main from release/2.5.0 @ 0d40f9f27dcef5ad235d516b793244aaa6a87720 (#19002) Source hash: 0d40f9f27... 29564c3
- Update GUI pin to 'b2caac88dc2ced4d4e2a904456506bc7318a5434' (#19010) Update GUI pin to 'b2caac88dc2ced4d4e2a9044565... 422179a
- Update .repo-content-updater.yml to use default rebase setting (#18979) * Update .repo-content-updater.yml to use de... 3650efd
- CHIA-2020 Simplify add_block_batch (#19004) Simplify add_block_batch. 1. No need to accept AugmentedBlockchain an... 9063e29
- Unconfirmed tx cache - CHIA-785 (#18422) * unconfirmed_tx_cache * fix types in test * fix already included check 35c8375
- add some validation of `fork_info` in Blockchain.add_block() (#18981) * add some validation of fork_info in Blockcha... bc065b5
- Update Managed Files (#19012) Update dependabot 214ecf7
- [CHIA-1829] don't drop outgoing response messages (#18990) never rate limit outgoing response messages (RespondBloc... c4e714e
- build(deps): bump aiohttp from 3.11.9 to 3.11.10 (#19015) Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from ... a4a4be3
- Track weight proof tasks (#18896) * keep track of wp tasks * use cancel_task_safe * await at shutdown * awa... f6e08ba
- build(deps): bump anyio from 4.6.2.post1 to 4.7.0 (#19016) Bumps [anyio](https://github.com/agronholm/anyio) from 4.... de7a74e
- build(deps): bump pytest-cov from 5.0.0 to 6.0.0 (#19018) Bumps [pytest-cov](https://github.com/pytest-dev/pytest-co... 3308c85
- build(deps): bump boto3 from 1.35.73 to 1.35.77 (#19019) Bumps [boto3](https://github.com/boto/boto3) from 1.35.73 t... 4d70c76
- build(deps): bump coverage from 7.6.4 to 7.6.9 (#19021) Bumps [coverage](https://github.com/nedbat/coveragepy) from ... 7e72d7c
- use height to hash in short sync (#19007) * use height to hash in short sync * remove added debug code * refac... 3ab83f0
- Update changelog for 2.5.0 (#19030) 40ca4f9
- [CHIA-1316] Port VC Endpoints to `@marshal` decorator (#18970) * Port `vc_mint` * Port `vc_spend` * Port `vc_r... be0a77d
- and 36 more ...
almogdepaz pushed 1 commit to assert-height-to-hash-in-contains-block Chia-Network/chia-blockchain
- fix height o and height to hash in augmented e0cd0cd
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
we clean all the blocks we cant infuse in the loop above but we dont clean the blocks that we moved from self.overflow_blocks to the new_unfinished i think just adding if block in self.overflo...
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
removing line 271
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
```suggestion if self._get_rc_cache_index(block) is None: ```
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
can change the name to add_blocks but is this similar to what we currently do in the full node ? in the full node we use a fixed batch size both for the short_sync_batch and sync_from_fork_point ...
almogdepaz created a comment on a pull request on Chia-Network/chia-blockchain
> we really should have a test that exercise this. I'm a bit surprised the deep reorg tests don't actually. We have a case where we switch from lighter blocks to heavier ones, which I believe shoul...
almogdepaz opened a draft pull request on Chia-Network/chia-blockchain
fix wrong param in prevalidate
<!-- Merging Requirements: - Please give your PR a title that is release-note friendly - In order to be merged, you must add the most appropriate category Label (Added, Changed, Fixed) to your PR...almogdepaz created a branch on Chia-Network/chia-blockchain
fix_bug_in_prevalidated_blocks - Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
we call add_blocks_in_batches sometimes with huge lists of of blocks since we expect it to batch them into validation, this seems to diverge more then what we do in the full node
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
iir the linter doesn't like the comparison between an optional and a uint32
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
since this is backtrack sync this height may be above our peak so None is a possibility, we are trying to find the first height we have with an equal header hash
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
we need to either assert or throw here so we disconnect and ban the peer
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
because we are guaranteed to have this height
almogdepaz created a review comment on a pull request on Chia-Network/chia-blockchain
this is short_sync_batch we do not backtrack we start from a fork point that we assume is in our chain, if it is not we return false and do a long_sync since its a reorg
almogdepaz pushed 1 commit to fix-contains-block-in-short-sync Chia-Network/chia-blockchain
- remove added debug code 10e89e6
almogdepaz closed a draft pull request on Chia-Network/chia-blockchain
add assertions to contains block
<!-- Merging Requirements: - Please give your PR a title that is release-note friendly - In order to be merged, you must add the most appropriate category Label (Added, Changed, Fixed) to your PR...almogdepaz opened a draft pull request on Chia-Network/chia-blockchain
use height to hash in short sync
<!-- Merging Requirements: - Please give your PR a title that is release-note friendly - In order to be merged, you must add the most appropriate category Label (Added, Changed, Fixed) to your PR...almogdepaz created a branch on Chia-Network/chia-blockchain
fix-contains-block-in-short-sync - Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)