network: fix checkpoints.
This commit is contained in:
parent
6da3fbac3a
commit
74b1562a87
@ -74,7 +74,7 @@ main.checkpoints = [
|
||||
|
||||
main.checkpoints = main.checkpoints.reduce(function(out, block) {
|
||||
out[block.height] = utils.revHex(block.hash);
|
||||
return block.height;
|
||||
return block;
|
||||
}, {});
|
||||
|
||||
main.checkpoints.tsLastCheckpoint = 1397080064;
|
||||
@ -158,7 +158,7 @@ testnet.checkpoints = [
|
||||
|
||||
testnet.checkpoints = testnet.checkpoints.reduce(function(out, block) {
|
||||
out[block.height] = utils.revHex(block.hash);
|
||||
return block.height;
|
||||
return block;
|
||||
}, {});
|
||||
|
||||
testnet.checkpoints.tsLastCheckpoint = 1338180505;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user