Skip to content

Instantly share code, notes, and snippets.

@mmitech
Forked from genecyber/gist:46a835038221d8e30cfb
Last active August 29, 2015 14:27
Show Gist options
  • Save mmitech/74a000df9a02895affc5 to your computer and use it in GitHub Desktop.
Save mmitech/74a000df9a02895affc5 to your computer and use it in GitHub Desktop.
Bitpay insight altcoin p2p alt hashing hotfix
var blockHash = bitcoreUtil.formatHashFull(block.calcHash());
var check = blockHash.substring(0, 4);
if (check != '0000') {
console.log("Scrypt block detected. Falling back to RPC");
self.historicSync.start({forceRPC:1}, function(){
sockets.broadcastSyncInfo(self.historicSync.info());
self.log('[p2p_sync] Done resync.');
});
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment