Full flow renaming

This commit is contained in:
danielSanchezQ 2025-01-24 17:31:31 +00:00
parent 8550ce6086
commit 2b888b251f

View File

@ -17,19 +17,18 @@ class DAVerifierWApi:
self.api = DAApi(self.store)
self.verifier = DAVerifier()
def receive_blob(self, blob: DAShare):
def receive_blob(self, blob: DABlob):
if self.verifier.verify(blob):
# Warning: If aggregated col commitment and row commitment are the same,
# the build_attestation_message method will produce the same output.
cert_id = build_blob_id(blob.aggregated_column_commitment, blob.rows_commitments)
self.store.populate(blob, cert_id)
return attestation
blob_id = build_blob_id(blob.aggregated_column_commitment, blob.rows_commitments)
self.store.populate(blob, blob_id)
def receive_metadata(self, vid: BlobMetadata):
def receive_metadata(self, blob_metadata: BlobMetadata):
# Usually the certificate would be verifier here,
# but we are assuming that this it is already coming from the verified block,
# in which case all certificates had been already verified by the DA Node.
self.api.write(vid.blob_id, vid.metadata)
self.api.write(blob_metadata.blob_id, blob_metadata.metadata)
def read(self, app_id, indexes) -> List[Optional[DAShare]]:
return self.api.read(app_id, indexes)
@ -67,14 +66,14 @@ class TestFullFlow(TestCase):
# inject mock send and await method
self.dispersal._send_and_await_response = __send_and_await_response
blob_id = build_blob_id(encoded_data.aggregated_column_commitment, encoded_data.row_commitments)
vid = BlobMetadata(
blob_metadata = BlobMetadata(
blob_id,
Metadata(app_id, index)
)
# verifier
for node in self.api_nodes:
node.receive_metadata(vid)
node.receive_metadata(blob_metadata)
# read from api and confirm its working
# notice that we need to sort the api_nodes by their public key to have the blobs sorted in the same fashion