Skip to content

Commit

Permalink
Update the genesis coinbase and proof targets
Browse files Browse the repository at this point in the history
  • Loading branch information
raychu86 committed May 23, 2024
1 parent 140ff26 commit 1da43ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/network/src/testnet_v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ impl Network for TestnetV0 {
/// The network edition.
const EDITION: u16 = 0;
/// The genesis block coinbase target.
const GENESIS_COINBASE_TARGET: u64 = (1u64 << 5).saturating_sub(1);
const GENESIS_COINBASE_TARGET: u64 = (1u64 << 10).saturating_sub(1);
/// The genesis block proof target.
const GENESIS_PROOF_TARGET: u64 = 1u64 << 3;
const GENESIS_PROOF_TARGET: u64 = 1u64 << 8;
/// The fixed timestamp of the genesis block.
const GENESIS_TIMESTAMP: i64 = 1715776496 /* 2024-05-15 12:34:56 UTC */;
/// The network ID.
Expand Down

0 comments on commit 1da43ab

Please sign in to comment.