Bringing Alicia up to speed with logic changes.

pull/632/head
jMyles 2019-01-10 14:26:59 -05:00
parent 5bd9d56afc
commit 990ae276d3
1 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,8 @@ except: # If anything fails, let's create Alicia from scratch
federated_only=True,
learn_on_same_thread=True,
)
alice_config.initialize(password=passphrase)
alice_config.keyring.unlock(password=passphrase)
alicia = alice_config.produce()
# We will save Alicia's config to a file for later use
@ -103,7 +105,7 @@ from doctor_keys import get_doctor_pubkeys
doctor_pubkeys = get_doctor_pubkeys()
powers_and_material = {
EncryptingPower: doctor_pubkeys['enc'],
DecryptingPower: doctor_pubkeys['enc'],
SigningPower: doctor_pubkeys['sig']
}