Skip to content

Commit

Permalink
Merge pull request #122 from anonymousbitcoin/fix-deprecation
Browse files Browse the repository at this point in the history
Fix deprecation of block height
  • Loading branch information
phoenixanon committed Nov 12, 2023
2 parents 4e2c2df + 57ed08e commit ca3bf29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deprecation.h
Expand Up @@ -5,8 +5,8 @@
#ifndef ZCASH_DEPRECATION_H
#define ZCASH_DEPRECATION_H

// Deprecation block is now 800,000.
static const int APPROX_RELEASE_HEIGHT = 800000;
// Deprecation block is now 1,600,000.
static const int APPROX_RELEASE_HEIGHT = 1600000;
static const int WEEKS_UNTIL_DEPRECATION = 18;
static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);

Expand Down

0 comments on commit ca3bf29

Please sign in to comment.