diff --git a/pallets/subtensor/src/registration.rs b/pallets/subtensor/src/registration.rs index 90ce2d961..7edf3e358 100644 --- a/pallets/subtensor/src/registration.rs +++ b/pallets/subtensor/src/registration.rs @@ -546,7 +546,7 @@ impl Pallet { } pub fn create_seal_hash(block_number_u64: u64, nonce_u64: u64, hotkey: &T::AccountId) -> H256 { - let nonce = nonce_u64.to_be_bytes(); + let nonce = nonce_u64.to_le_bytes(); let block_hash_at_number: H256 = Self::get_block_hash_from_u64(block_number_u64); let block_hash_bytes: &[u8; 32] = block_hash_at_number.as_fixed_bytes(); let binding = Self::hash_block_and_hotkey(block_hash_bytes, hotkey);