Skip to content

Commit

Permalink
fix: add field to struct (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle authored Oct 27, 2022
1 parent 48d631a commit 9c79319
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions immutable_tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,10 @@ func (t *ImmutableTree) isLatestTreeVersion() (bool, error) {
// Used internally by MutableTree.
func (t *ImmutableTree) clone() *ImmutableTree {
return &ImmutableTree{
root: t.root,
ndb: t.ndb,
version: t.version,
root: t.root,
ndb: t.ndb,
version: t.version,
skipFastStorageUpgrade: t.skipFastStorageUpgrade,
}
}

Expand Down

0 comments on commit 9c79319

Please sign in to comment.