fix: app_id should be list of 32 integers

This commit is contained in:
Roman 2025-01-17 15:14:46 +08:00
parent 0eac80fc57
commit b83019c7f4
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75

View File

@ -5,7 +5,7 @@ from src.steps.common import StepsCommon
def prepare_dispersal_data(data):
data_bytes = data.encode("utf-8")
dispersal_data = {"data": list(data_bytes), "metadata": {"app_id": 10, "index": 0}}
dispersal_data = {"data": list(data_bytes), "metadata": {"app_id": [1] + [0] * 31, "index": 0}}
return dispersal_data