make _roots public

This commit is contained in:
poma 2019-11-01 04:32:26 +03:00
parent 1364762b93
commit 6571f54768
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ contract MerkleTreeWithHistory {
uint256 public levels;
uint256 constant ROOT_HISTORY_SIZE = 100;
uint256[ROOT_HISTORY_SIZE] private _roots;
uint256[ROOT_HISTORY_SIZE] public _roots;
uint256 public current_root = 0;
uint256[] private _filled_subtrees;