Skip to content
Snippets Groups Projects
Commit 0b539485 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

leave a note about spendable vs unspendable in unblinded token model logs

parent f59d3b5f
No related branches found
No related tags found
1 merge request!212Close the trust loop
......@@ -462,6 +462,13 @@ class VoucherStore(object):
)
group_id = cursor.lastrowid
self._log.info(
"Recording {count} {unspendable}spendable unblinded tokens from public key {public_key}.",
count=len(unblinded_tokens),
unspendable="" if spendable else "un",
public_key=public_key,
)
cursor.execute(
"""
UPDATE [vouchers]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment