storage_type: Strip key proper hash and entry bytes (32 instead of 16) #1522
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR ensures that we can properly decode storage key addresses.
There was an issue confirmed by #1517, where the decoding of keys for dynamic storage queries would always fail at:
subxt/subxt/src/storage/storage_type.rs
Lines 260 to 264 in 75c905d
After investigating the code path, the error is coming from the following lines:
subxt/core/src/storage/storage_key.rs
Lines 272 to 275 in 75c905d
The check appeared to be correct, as well as consuming hasher keys via
consume_hash_returning_key_bytes
.After inspecting the key address bytes, we wrongly assumed the storage prefix bytes length.
Our storage keys start with the following:
In the issue, it is
twox_128(System) ++ twox_128(Accounts)
.The output of the twox is: 16 bytes, not 8 as stated and assumed in our code base.
Testing Done
Closes: #1517