From 416cdccd2a93f83fe713dea3b0d86889c430dce3 Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Tue, 27 Feb 2024 01:39:51 +0800 Subject: [PATCH] fix some spec links (#9657) --- cannon/docs/README.md | 2 +- op-node/README.md | 2 +- op-node/rollup/derive/channel_out.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cannon/docs/README.md b/cannon/docs/README.md index e56d65ba37d6..90fbcd34dbd6 100644 --- a/cannon/docs/README.md +++ b/cannon/docs/README.md @@ -45,7 +45,7 @@ There are 3 types of witness data involved in onchain execution: ### Packed State The Packed State is provided in every executed onchain instruction. -See [Cannon VM Specs](https://github.com/ethereum-optimism/specs/blob/main/specs/cannon-fault-proof-vm.md#state) for +See [Cannon VM Specs](https://github.com/ethereum-optimism/specs/blob/main/specs/experimental/fault-proof/cannon-fault-proof-vm.md#state) for details on the state structure. The packed state is small! The `State` data can be packed in such a small amount of EVM words, diff --git a/op-node/README.md b/op-node/README.md index 08480bad0919..fa190535a452 100644 --- a/op-node/README.md +++ b/op-node/README.md @@ -1,6 +1,6 @@ # op-node -This is the reference implementation of the [rollup-node spec](https://github.com/ethereum-optimism/specs/blob/main/specs/rollup-node.md). +This is the reference implementation of the [rollup-node spec](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/rollup-node.md). ## Compiling diff --git a/op-node/rollup/derive/channel_out.go b/op-node/rollup/derive/channel_out.go index ab94986fb8f3..f317bd67f7fb 100644 --- a/op-node/rollup/derive/channel_out.go +++ b/op-node/rollup/derive/channel_out.go @@ -22,7 +22,7 @@ var ErrChannelOutAlreadyClosed = errors.New("channel-out already closed") // This is the fixed overhead frame size, calculated as specified // in the [Frame Format] specs: 16 + 2 + 4 + 1 = 23 bytes. // -// [Frame Format]: https://github.com/ethereum-optimism/optimism/blob/develop/specs/derivation.md#frame-format +// [Frame Format]: https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/derivation.md#frame-format const FrameV0OverHeadSize = 23 var CompressorFullErr = errors.New("compressor is full")