Skip to content

Commit 8e66adb

Browse files
authored
Merge pull request #16373 from MinaProtocol/dkijania/update_sample_db
update sample_db data for archive test
2 parents c701a31 + 4972ce1 commit 8e66adb

File tree

7 files changed

+2865
-4009
lines changed

7 files changed

+2865
-4009
lines changed

scripts/mina-local-network/split_precomputed_log.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ARCHIVE_URI=${ARCHIVE_URI:-postgres://postgres@localhost:5432/archive}
1111
PRECOMPUTED_LOG_FILE=$1
1212

1313
while IFS= read -r line; do
14-
LEDGER_HASH=$(echo $line | jq -r '.protocol_state.body.blockchain_state.staged_ledger_hash.non_snark.ledger_hash')
14+
LEDGER_HASH=$(echo $line | jq -r '.data.protocol_state.body.blockchain_state.staged_ledger_hash.non_snark.ledger_hash')
1515
FILE_NAME=$(psql $ARCHIVE_URI -t -c "SELECT 'mainnet-' || height || '-' ||state_hash || '.json' FROM blocks WHERE ledger_hash = '$LEDGER_HASH'")
1616
echo $line > $FILE_NAME
1717
done < $PRECOMPUTED_LOG_FILE

src/test/archive/sample_db/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ a) We can alter input config and use `target_epoch_ledgers_state_hash` property
7272

7373
b) Convert pending chain to canonical blocks using helper script:
7474

75-
`./src/app/replayer/test/convert_chain_to_canonical.sh postgres://postgres:postgres@localhost:5432/archive '3NLbZ28M72eewCxYUCE3CwQo5c7wPzoiGcNC5Bbe8oEnrutXtZt9'`
75+
`./src/test/archive/sample_db/convert_chain_to_canonical.sh postgres://postgres:postgres@localhost:5432/archive '3NLbZ28M72eewCxYUCE3CwQo5c7wPzoiGcNC5Bbe8oEnrutXtZt9'`
7676

77-
As a result archive database will now have blocks which are a part of chain from genesis block to target block converted to canonical. All blocks which are not a part of mentioned chain and have height smaller than target blocks will be orphaned. Rest will be left intact as pending. DO NOT USE on production.
77+
As a result archive database will now have blocks which are a part of chain from genesis block to target block, converted to canonical. All blocks which are not a part of mentioned chain and have height smaller than target blocks will be orphaned. Rest will be left intact as pending. DO NOT USE on production.
7878

7979
### Dependencies
8080

0 commit comments

Comments
 (0)