Define a probationary period for policies in the network (#2353)

pull/2460/head
David Núñez 2020-11-09 15:14:58 +01:00 committed by Kieran Prasch
parent 65a9b84cbc
commit 7f52bc20e5
1 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,8 @@ from pathlib import Path
import os
from appdirs import AppDirs
from maya import MayaDT
import nucypher
# Environment variables
@ -69,3 +71,6 @@ TEMPORARY_DOMAIN = ":temporary-domain:" # for use with `--dev` node runtimes
# Event Blocks Throttling
NUCYPHER_EVENTS_THROTTLE_MAX_BLOCKS = 'NUCYPHER_EVENTS_THROTTLE_MAX_BLOCKS'
# Probationary period (see #2353)
END_OF_POLICIES_PROBATIONARY_PERIOD = MayaDT.from_iso8601('2021-01-31T23:59:59.0Z')