Changing domain string back to constant in light of #2207.

pull/1741/head
jMyles 2020-08-31 15:52:12 -07:00
parent d2cb974bc1
commit c3034dbadf
1 changed files with 2 additions and 3 deletions

View File

@ -14,8 +14,7 @@ GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with nucypher. If not, see <https://www.gnu.org/licenses/>.
"""
from nucypher.config.constants import TEMPORARY_DOMAIN
from nucypher.exceptions import DevelopmentInstallationRequired
from copy import copy
@ -74,7 +73,7 @@ class Vladimir(Ursula):
vladimir = cls(is_me=True,
crypto_power=crypto_power,
db_filepath=cls.db_filepath,
domains=[':TEMPORARY_DOMAIN:'],
domains=[TEMPORARY_DOMAIN],
block_until_ready=False,
start_working_now=False,
rest_host=target_ursula.rest_interface.host,