Skip to content
Snippets Groups Projects
Commit fb3386a5 authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Clarify when `changes_root` returns `None` (#5428)

parent 49d8439f
No related merge requests found
......@@ -286,7 +286,8 @@ pub trait Storage {
///
/// The hashing algorithm is defined by the `Block`.
///
/// Returns an `Option` that holds the SCALE encoded hash.
/// Returns an `Some(_)` which holds the SCALE encoded hash or `None` when
/// changes trie is disabled.
fn changes_root(&mut self, parent_hash: &[u8]) -> Option<Vec<u8>> {
self.storage_changes_root(parent_hash)
.expect("Invalid `parent_hash` given to `changes_root`.")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment