You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The resultant CBOR fails deserializaiton, with error such as
Deserialization failed in Transaction.witness_set.TransactionWitnessSet.plutus_data.PlutusList.PlutusDataEnum.PlutusDataEnum because: No variant matched
or
Transaction::from_bytes: Deserialization failed in Transaction.witness_set.TransactionWitnessSet.plutus_datums.NonemptySet.PlutusData.ConstrPlutusData.ConstrPlutusData.fields.PlutusData.Bytes because: Out of range: 203 - must be in range 0 - 64
The text was updated successfully, but these errors were encountered:
This seems to be caused by the limitation on bytestring length in the cardano specs (bounded_bytes) - the only way how to correctly encode a very long bytestring is using an indefinite-length bytestring, which is in conflict with the canonicalization performed by cardano-hw-cli transform.
This issue might get resolved when we tackle #177. We will investigate this further, thanks for the report.
Example input:
The resultant CBOR fails deserializaiton, with error such as
or
The text was updated successfully, but these errors were encountered: