Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch mixnet to use the dev diff mode && upgrade genesis time #625

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion params/genesis.go
Original file line number Diff line number Diff line change
@@ -385,7 +385,7 @@ var testPowNetGenesisCoinbaseTx = types.Transaction{
}

var mixNetGenesisTx1 = buildMixNetGenesisTxOne()
var mixnetGenesisTime = time.Unix(1709626438, 0) // 2024-03-05
var mixnetGenesisTime = time.Unix(1709801721, 0) // 2024-03-07
func buildMixNetGenesisTxOne() types.Transaction {
tx := types.Transaction{
Version: 1,
2 changes: 1 addition & 1 deletion params/params_mixnet.go
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ var MixNetParams = Params{
},
// after this height the big graph will be the main pow graph
AdjustmentStartMainHeight: 1440 * 15 / mixTargetTimePerBlock,
DifficultyMode: pow.DIFFICULTY_MODE_MEER,
DifficultyMode: pow.DIFFICULTY_MODE_DEVELOP,
},

WorkDiffAlpha: 1,