From 731a9b8017e4519e47177d97a7d3c77eb2714f72 Mon Sep 17 00:00:00 2001 From: aidan Date: Wed, 19 Jun 2024 19:08:19 +0200 Subject: [PATCH] format: Fix formatting in code comments --- pallets/storage-provider/src/utils.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pallets/storage-provider/src/utils.rs b/pallets/storage-provider/src/utils.rs index a9f0a53dc..d6f41560c 100644 --- a/pallets/storage-provider/src/utils.rs +++ b/pallets/storage-provider/src/utils.rs @@ -5,9 +5,9 @@ use primitives::BlockNumber; use sp_core::blake2_64; /// Assigns proving period offset randomly in the range [0, WPOST_PROVING_PERIOD) -/// by hashing the address and current block number. +/// by hashing the address and current block number. /// -/// Filecoin implementation reference: https://github.com/filecoin-project/builtin-actors/blob/17ede2b256bc819dc309edf38e031e246a516486/actors/miner/src/lib.rs#L4886 +/// Filecoin implementation reference: pub fn assign_proving_period_offset( addr: &AccountId, current_block: BlockNumber,