From 9780e8ef290f45ac013f007ae783312da3f81e91 Mon Sep 17 00:00:00 2001 From: steelgeek091 Date: Mon, 15 Apr 2024 12:06:18 +0800 Subject: [PATCH] cargo fmt --- frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs b/frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs index bd8c29e3ec..7f512c0456 100644 --- a/frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs +++ b/frameworks/moveos-stdlib/src/natives/moveos_stdlib/hash.rs @@ -1,6 +1,7 @@ // Copyright (c) RoochNetwork // SPDX-License-Identifier: Apache-2.0 +use crate::args_count_error; use crate::natives::helpers::{make_module_natives, make_native}; use fastcrypto::hash::{Blake2b256, HashFunction, Keccak256, Ripemd160}; use move_binary_format::errors::PartialVMResult; @@ -14,7 +15,6 @@ use move_vm_types::{ }; use smallvec::smallvec; use std::collections::VecDeque; -use crate::args_count_error; fn hash, const DIGEST_SIZE: usize>( gas_params: &FromBytesGasParameters,