mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 06:34:19 +01:00
Update some comments/todos/discuss
This commit is contained in:
@@ -3,7 +3,7 @@ from pisa.encrypted_blob import EncryptedBlob
|
|||||||
|
|
||||||
# Basic appointment structure
|
# Basic appointment structure
|
||||||
class Appointment:
|
class Appointment:
|
||||||
# TODO: 35-appointment-checks
|
# DISCUSS: 35-appointment-checks
|
||||||
def __init__(self, locator, start_time, end_time, dispute_delta, encrypted_blob, cipher, hash_function):
|
def __init__(self, locator, start_time, end_time, dispute_delta, encrypted_blob, cipher, hash_function):
|
||||||
self.locator = locator
|
self.locator = locator
|
||||||
self.start_time = start_time # ToDo: #4-standardize-appointment-fields
|
self.start_time = start_time # ToDo: #4-standardize-appointment-fields
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ class Responder:
|
|||||||
return completed_jobs
|
return completed_jobs
|
||||||
|
|
||||||
def rebroadcast(self, jobs_to_rebroadcast):
|
def rebroadcast(self, jobs_to_rebroadcast):
|
||||||
# ToDO: #22-discuss-confirmations-before-retry
|
# DISCUSS: #22-discuss-confirmations-before-retry
|
||||||
# ToDo: #23-define-behaviour-approaching-end
|
# ToDo: #23-define-behaviour-approaching-end
|
||||||
|
|
||||||
for tx in jobs_to_rebroadcast:
|
for tx in jobs_to_rebroadcast:
|
||||||
|
|||||||
@@ -11,10 +11,6 @@ from pisa.block_processor import BlockProcessor
|
|||||||
from pisa.utils.zmq_subscriber import ZMQHandler
|
from pisa.utils.zmq_subscriber import ZMQHandler
|
||||||
|
|
||||||
|
|
||||||
# WIP: MOVED BLOCKCHAIN RELATED TASKS TO BLOCK PROCESSOR IN AN AIM TO MAKE THE CODE MORE MODULAR. THIS SHOULD HELP
|
|
||||||
# WITH CODE REUSE WHEN MERGING THE DATA PERSISTENCE PART.
|
|
||||||
|
|
||||||
|
|
||||||
class Watcher:
|
class Watcher:
|
||||||
def __init__(self, max_appointments=MAX_APPOINTMENTS):
|
def __init__(self, max_appointments=MAX_APPOINTMENTS):
|
||||||
self.appointments = dict()
|
self.appointments = dict()
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ def test_request_appointment(new_appointment):
|
|||||||
|
|
||||||
def test_add_appointment_multiple_times(new_appointment, n=MULTIPLE_APPOINTMENTS):
|
def test_add_appointment_multiple_times(new_appointment, n=MULTIPLE_APPOINTMENTS):
|
||||||
# Multiple appointments with the same locator should be valid
|
# Multiple appointments with the same locator should be valid
|
||||||
# TODO: #34-store-identical-appointments
|
# DISCUSS: #34-store-identical-appointments
|
||||||
for _ in range(n):
|
for _ in range(n):
|
||||||
r = add_appointment(new_appointment)
|
r = add_appointment(new_appointment)
|
||||||
assert (r.status_code == 200)
|
assert (r.status_code == 200)
|
||||||
|
|||||||
Reference in New Issue
Block a user