notarization check for asset chains
This commit is contained in:
12
resolve.sh
Executable file
12
resolve.sh
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
for f in $(git diff --name-only --diff-filter=U | cat); do
|
||||||
|
echo "Resolve conflict in $f ..."
|
||||||
|
git checkout --theirs $f
|
||||||
|
done
|
||||||
|
|
||||||
|
for f in $(git diff --name-only --diff-filter=U | cat); do
|
||||||
|
echo "Adding file $f ..."
|
||||||
|
git add $f
|
||||||
|
done
|
||||||
|
|
||||||
10
src/main.cpp
10
src/main.cpp
@@ -3367,6 +3367,16 @@ bool static DisconnectTip(CValidationState &state, bool fBare = false) {
|
|||||||
CBlock block;
|
CBlock block;
|
||||||
if (!ReadBlockFromDisk(block, pindexDelete,1))
|
if (!ReadBlockFromDisk(block, pindexDelete,1))
|
||||||
return AbortNode(state, "Failed to read block");
|
return AbortNode(state, "Failed to read block");
|
||||||
|
if ( ASSETCHAINS_SYMBOL[0] != 0 || pindexDelete->nHeight > 1400000 )
|
||||||
|
{
|
||||||
|
int32_t prevMoMheight; uint256 notarizedhash,txid;
|
||||||
|
komodo_notarized_height(&prevMoMheight,¬arizedhash,&txid);
|
||||||
|
if ( block.GetHash() == notarizedhash )
|
||||||
|
{
|
||||||
|
fprintf(stderr,"DisconnectTip trying to disconnect notarized block at ht.%d\n",(int32_t)pindexDelete->nHeight);
|
||||||
|
return(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
// Apply the block atomically to the chain state.
|
// Apply the block atomically to the chain state.
|
||||||
uint256 anchorBeforeDisconnect = pcoinsTip->GetBestAnchor();
|
uint256 anchorBeforeDisconnect = pcoinsTip->GetBestAnchor();
|
||||||
int64_t nStart = GetTimeMicros();
|
int64_t nStart = GetTimeMicros();
|
||||||
|
|||||||
Reference in New Issue
Block a user