Skip to content

Commit

Permalink
Adjust sighash left shift effective height and increase net version
Browse files Browse the repository at this point in the history
Signed-off-by: Yilun <[email protected]>
  • Loading branch information
yilunzhang committed May 11, 2021
1 parent e22f43e commit 7a724e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/nknd/nknd.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (
)

const (
NetVersionNum = 23 // This is temporary and will be removed soon after mainnet is stabilized
NetVersionNum = 24 // This is temporary and will be removed soon after mainnet is stabilized
)

var (
Expand Down
6 changes: 3 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ var (
values: []bool{false, true},
}
SigChainBitShiftMaxLength = HeightDependentInt32{
heights: []uint32{2630000, 2543000, 0},
heights: []uint32{2633000, 2543000, 0},
values: []int32{16, 14, 0},
}
SigChainVerifyFingerTableRange = HeightDependentBool{
Expand Down Expand Up @@ -205,13 +205,13 @@ var (
SigChainBitShiftPerElement = 4
SigChainRecentMinerBlocks = 4096
SigChainRecentMinerBitShift = HeightDependentInt32{
heights: []uint32{2630000, 0},
heights: []uint32{2633000, 0},
values: []int32{4, 0},
}
SigChainSkipMinerBlocks = 4096
SigChainSkipMinerMaxAllowed = 3
SigChainSkipMinerBitShift = HeightDependentInt32{
heights: []uint32{2630000, 0},
heights: []uint32{2633000, 0},
values: []int32{10, 0},
}
)
Expand Down

0 comments on commit 7a724e7

Please sign in to comment.