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
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
Update Message Recovery Initialization Command based on LIP PR as per following changes
Update condition
# The commands fails if the chain is not terminated.ifterminatedStateAccount(trsParams.chainID) doesnotexistorterminatedStateAccount(trsParams.chainID).initialized==False:
to
# The command fails if the chain is not terminated.ifterminatedStateAccount(trsParams.chainID) doesnotexist:
raiseException("Terminated state account not present.")
Update queryKey calculation to queryKey = STORE_PREFIX_INTEROPERABILITY + SUBSTORE_PREFIX_CHANNEL_DATA + sha256(OWN_CHAIN_ID). Make sure to add a unit test where OWN_CHAIN_ID != getMainchainID()
Acceptance Criteria
Should have new/updated unit test cases based on the update
All unit tests should pass
Additional Information
The text was updated successfully, but these errors were encountered:
Description
Update Message Recovery Initialization Command based on LIP PR as per following changes
to
queryKey = STORE_PREFIX_INTEROPERABILITY + SUBSTORE_PREFIX_CHANNEL_DATA + sha256(OWN_CHAIN_ID)
. Make sure to add a unit test whereOWN_CHAIN_ID != getMainchainID()
Acceptance Criteria
Additional Information
The text was updated successfully, but these errors were encountered: