Skip to content

Commit

Permalink
chore: small changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
obycode committed Dec 20, 2024
1 parent fef4ea1 commit e4f0b7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stacks-common/src/util/lru_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

use std::collections::HashMap;
use hashbrown::HashMap;

/// Node in the doubly linked list
struct Node<K, V> {
Expand Down
2 changes: 1 addition & 1 deletion stackslib/src/core/nonce_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ mod tests {
clarity_instance
.begin_test_genesis_block(
&StacksBlockId::sentinel(),
&StacksBlockId([0 as u8; 32]),
&StacksBlockId([0u8; 32]),
&TEST_HEADER_DB,
&TEST_BURN_STATE_DB,
)
Expand Down

0 comments on commit e4f0b7b

Please sign in to comment.