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
Due to how we handle null nodes in memorydb – by calculating them on instantiation – we can't use MemoryDB::default() as a synonym for MemoryDB::new().
Do one of three things:
fix the null node instantiation hack (come talk to me or @rphmeier first)
remove #[derive(Default)] and fix all code that uses MemoryDB::default()
implement Default properly
The text was updated successfully, but these errors were encountered:
Due to how we handle null nodes in
memorydb
– by calculating them on instantiation – we can't useMemoryDB::default()
as a synonym forMemoryDB::new()
.Do one of three things:
#[derive(Default)]
and fix all code that usesMemoryDB::default()
Default
properlyThe text was updated successfully, but these errors were encountered: