-
Notifications
You must be signed in to change notification settings - Fork 163
docs: update instructions #1976
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
base: master
Are you sure you want to change the base?
Conversation
bba92af
to
48905d8
Compare
6e6ad89
to
96c1787
Compare
ghcup install cabal 3.10.1.0 | ||
ghcup set ghc 8.10.7 | ||
ghcup set cabal 3.10.1.0 | ||
ghcup install ghc 9.6.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this OK for cardano-db-sync
? Those are the versions that were recently added in official cardano-node
build instruction --> https://developers.cardano.org/docs/get-started/cardano-node/installing-cardano-node/#building-via-cabal
96c1787
to
f3802ba
Compare
@@ -12,7 +12,6 @@ | |||
- `--fix-only`: Runs only the db-sync fix procedure for the wrong datum, redeemer_data, and plutus script bytes and exits. | |||
- `--disable-cache`: Disables the db-sync caches. Reduces memory usage but it takes longer to sync. | |||
- `--rollback-to-slot SLOTNO`: Force a rollback to the specified slot, if the given slot doesn't exist it will use the next greater slot. | |||
- `--disable-in-out`: Disables the `tx_in` and `tx_out` table. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one has no effect anymore. When using --disable-epoch --disable-in-out
it will result in:
preprod_13.6.0.5=# select count(*) from epoch;
count
-------
0
(1 row)
preprod_13.6.0.5=# select count(*) from tx_in;
count
---------
1211557
(1 row)
preprod_13.6.0.5=# select count(*) from tx_out;
count
---------
1686855
(1 row)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it mean that things related to pHasInOut
and enpHasInOut
:
-
pHasInOut :: Parser Bool
should be removed from code ?
@@ -12,7 +12,6 @@ | |||
- `--fix-only`: Runs only the db-sync fix procedure for the wrong datum, redeemer_data, and plutus script bytes and exits. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we delete --skip-fix
and --fix-only
as well ?
secp256k1
we usev0.3.2
https://github.com/input-output-hk/iohk-nix/blob/master/flake.nixwhich has different revison: https://github.com/bitcoin-core/secp256k1/releases/tag/v0.3.2
sanchonet
,private
ghc
to9.6.7
andcabal
to3.10.2.0
- the same versions as in official node instruction