If I set assumevalid=0 after syncing the blockchain will Bitcoin Core go back and validate historical blocks?bitcoind synced more blocks than in the blockchain?Do I need 145GB disk space to validate and relay transactions with Bitcoin Core?What are the trust assumptions in --assumed-valid in bitcoin core 0.14?How do I delete the blockchain after uninstalling Bitcion Core?How to delete last n blocks / roll back to specific block number in Bitcoin Core? (Like `monero-blockchain-import --pop-blocks n`)How can i set fee permanently via paytxfee commandBitcoin-cli using getblock to retrieve historical dataAfter a long connection to the wallet, it offers to reinstall blocks and synchronize all Bitcoin core blocksBitcoin core node is not starting after -prune is applied in bitcoin.config fileHow to revert back several blocks in Bitcoin Core without re-syncing from scratch
Is there an official reason for not adding a post-credits scene?
Do I add modifiers to the Charisma check roll of 15 granted by the Glibness spell?
Are there any of the Children of the Forest left, or are they extinct?
I'm in your subnets, golfing your code
Can I use a fetch land to shuffle my deck while the opponent has Ashiok, Dream Render in play?
Building a list of products from the elements in another list
Word for Food that's Gone 'Bad', but is Still Edible?
What does "Managed by Windows" do in the Power options for network connection?
Point of the Dothraki's attack in GoT S8E3?
What was the first story to feature the plot "the monsters were human all along"?
Can my company stop me from working overtime?
A factorization game
Where are the "shires" in the UK?
What are the differences between credential stuffing and password spraying?
Is bounce rate of a website a ranking factor?
Should homeowners insurance cover the cost of the home?
Copy previous line to current line from text file
Should I decline this job offer that requires relocating to an area with high cost of living?
Why is "breaking the mould" positively connoted?
29er Road Tire?
Can a Tiefling have more than two horns?
Decoupling cap routing on a 4 layer PCB
Do publishers care if submitted work has already been copyrighted?
US born but as a child of foreign diplomat
If I set assumevalid=0 after syncing the blockchain will Bitcoin Core go back and validate historical blocks?
bitcoind synced more blocks than in the blockchain?Do I need 145GB disk space to validate and relay transactions with Bitcoin Core?What are the trust assumptions in --assumed-valid in bitcoin core 0.14?How do I delete the blockchain after uninstalling Bitcion Core?How to delete last n blocks / roll back to specific block number in Bitcoin Core? (Like `monero-blockchain-import --pop-blocks n`)How can i set fee permanently via paytxfee commandBitcoin-cli using getblock to retrieve historical dataAfter a long connection to the wallet, it offers to reinstall blocks and synchronize all Bitcoin core blocksBitcoin core node is not starting after -prune is applied in bitcoin.config fileHow to revert back several blocks in Bitcoin Core without re-syncing from scratch
I originally synced my node using the Bitcoin Core default assumevalid value. If I set assumevalid=0 in bitcoin.conf and restart my node, will my node go back and validate historical blocks?
bitcoin-core bitcoind signature transaction-verification assume-valid
add a comment |
I originally synced my node using the Bitcoin Core default assumevalid value. If I set assumevalid=0 in bitcoin.conf and restart my node, will my node go back and validate historical blocks?
bitcoin-core bitcoind signature transaction-verification assume-valid
add a comment |
I originally synced my node using the Bitcoin Core default assumevalid value. If I set assumevalid=0 in bitcoin.conf and restart my node, will my node go back and validate historical blocks?
bitcoin-core bitcoind signature transaction-verification assume-valid
I originally synced my node using the Bitcoin Core default assumevalid value. If I set assumevalid=0 in bitcoin.conf and restart my node, will my node go back and validate historical blocks?
bitcoin-core bitcoind signature transaction-verification assume-valid
bitcoin-core bitcoind signature transaction-verification assume-valid
asked 2 hours ago
paddypaddy
233
233
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
No, it won't.
That's also not possible without rebuilding the UTXO set from scratch, as the unspent outputs being spent need to be known to validate spends against.
If you want to force a revalidation from scratch, start with -reindex-chainstate
. This will blow away the UTXO set, and recreate it from the blocks on disk, and revalidate everything in the process (including all signatures, if -assumevalid=0
is set).
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "308"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f87453%2fif-i-set-assumevalid-0-after-syncing-the-blockchain-will-bitcoin-core-go-back-an%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
No, it won't.
That's also not possible without rebuilding the UTXO set from scratch, as the unspent outputs being spent need to be known to validate spends against.
If you want to force a revalidation from scratch, start with -reindex-chainstate
. This will blow away the UTXO set, and recreate it from the blocks on disk, and revalidate everything in the process (including all signatures, if -assumevalid=0
is set).
add a comment |
No, it won't.
That's also not possible without rebuilding the UTXO set from scratch, as the unspent outputs being spent need to be known to validate spends against.
If you want to force a revalidation from scratch, start with -reindex-chainstate
. This will blow away the UTXO set, and recreate it from the blocks on disk, and revalidate everything in the process (including all signatures, if -assumevalid=0
is set).
add a comment |
No, it won't.
That's also not possible without rebuilding the UTXO set from scratch, as the unspent outputs being spent need to be known to validate spends against.
If you want to force a revalidation from scratch, start with -reindex-chainstate
. This will blow away the UTXO set, and recreate it from the blocks on disk, and revalidate everything in the process (including all signatures, if -assumevalid=0
is set).
No, it won't.
That's also not possible without rebuilding the UTXO set from scratch, as the unspent outputs being spent need to be known to validate spends against.
If you want to force a revalidation from scratch, start with -reindex-chainstate
. This will blow away the UTXO set, and recreate it from the blocks on disk, and revalidate everything in the process (including all signatures, if -assumevalid=0
is set).
answered 2 hours ago
Pieter WuillePieter Wuille
49.1k4101164
49.1k4101164
add a comment |
add a comment |
Thanks for contributing an answer to Bitcoin Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f87453%2fif-i-set-assumevalid-0-after-syncing-the-blockchain-will-bitcoin-core-go-back-an%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown