Skip to content

Commit 1412ad3

Browse files
sashass1315IGI-111
andauthored
fix(docs): update Fuel VM instruction set link to new docs site (#7319)
Replaced outdated GitHub link to the Fuel VM `bhsh` block hash specification with the current link on the official Fuel documentation site. https://docs.fuel.network/docs/specs/fuel-vm/instruction-set/#bhsh-block-hash broken link is https://github.com/FuelLabs/fuel-specs/blob/master/specs/vm/instruction_set.md#bhsh-block-hash Co-authored-by: IGI-111 <igi-111@protonmail.com>
1 parent f59835a commit 1412ad3

File tree

1 file changed

+1
-1
lines changed
  • forc-plugins/forc-client/src/op/call/trace

1 file changed

+1
-1
lines changed

forc-plugins/forc-client/src/op/call/trace/storage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ impl InterpreterStorage for ShallowStorage {
311311
block_height: fuel_vm::fuel_types::BlockHeight,
312312
) -> Result<fuel_vm::prelude::Bytes32, Self::DataError> {
313313
// Block header hashes for blocks with height greater than or equal to current block height are zero (0x00**32).
314-
// https://github.com/FuelLabs/fuel-specs/blob/master/specs/vm/instruction_set.md#bhsh-block-hash
314+
// https://docs.fuel.network/docs/specs/fuel-vm/instruction-set/#bhsh-block-hash
315315
if block_height >= self.block_height || block_height == Default::default() {
316316
Ok(Bytes32::zeroed())
317317
} else {

0 commit comments

Comments
 (0)