Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blockstorage: Drop legacy -txindex check #28195

Merged
merged 5 commits into from
Sep 5, 2023

Commits on Aug 1, 2023

  1. scripted-diff: Use blocks_path where possible

    -BEGIN VERIFY SCRIPT-
      sed -i 's|].chain_path, .blocks.|].blocks_path|g' $(git grep -l chain_path)
    -END VERIFY SCRIPT-
    MarcoFalke committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    fa69148 View commit details
    Browse the repository at this point in the history
  2. index: Drop legacy -txindex check

    MarcoFalke committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    fa86855 View commit details
    Browse the repository at this point in the history
  3. move-only: Move CBlockTreeDB to node/blockstorage

    The block index (CBlockTreeDB) is required to write and read blocks, so
    move it to blockstorage. This allows to drop the txdb.h include from
    `node/blockstorage.h`.
    
    Can be reviewed with:
    
    --color-moved=dimmed-zebra  --color-moved-ws=ignore-all-space
    MarcoFalke committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    fa65111 View commit details
    Browse the repository at this point in the history
  4. Fixup style of moved code

    Can be reviewed with --word-diff-regex=.
    MarcoFalke committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    faf6303 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. scripted-diff: Rename CBlockTreeDB -> BlockTreeDB

    -BEGIN VERIFY SCRIPT-
     sed -i 's|CBlockTreeDB|BlockTreeDB|g' $( git grep -l CBlockTreeDB )
    -END VERIFY SCRIPT-
    MarcoFalke committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    fae4055 View commit details
    Browse the repository at this point in the history