From 2d2810ac9a0ec0c7f97225157c1f508d9484a173 Mon Sep 17 00:00:00 2001 From: Wolfgang Welz Date: Mon, 12 Feb 2024 16:51:17 +0100 Subject: [PATCH 1/2] update copyright --- guests/build.rs | 2 +- guests/eth-block/src/main.rs | 2 +- guests/op-block/src/main.rs | 2 +- guests/op-compose/src/main.rs | 4 +++- guests/op-derive/src/main.rs | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/guests/build.rs b/guests/build.rs index 1eb76f43..e540a42d 100644 --- a/guests/build.rs +++ b/guests/build.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/guests/eth-block/src/main.rs b/guests/eth-block/src/main.rs index 9a8564d7..4d63950c 100644 --- a/guests/eth-block/src/main.rs +++ b/guests/eth-block/src/main.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/guests/op-block/src/main.rs b/guests/op-block/src/main.rs index 1e2c2a3e..50759340 100644 --- a/guests/op-block/src/main.rs +++ b/guests/op-block/src/main.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/guests/op-compose/src/main.rs b/guests/op-compose/src/main.rs index 9aae59e8..eb5094f4 100644 --- a/guests/op-compose/src/main.rs +++ b/guests/op-compose/src/main.rs @@ -23,7 +23,9 @@ pub fn main() { // read composition input let compose_input: ComposeInput = env::read(); // process input - let compose_output = compose_input.process().expect("Failed to process composition."); + let compose_output = compose_input + .process() + .expect("Failed to process composition."); // output statement about larger segment env::commit(&compose_output); } diff --git a/guests/op-derive/src/main.rs b/guests/op-derive/src/main.rs index 123dac7e..c87edeae 100644 --- a/guests/op-derive/src/main.rs +++ b/guests/op-derive/src/main.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. From 9e3d5bf49406b3f5aec58aa6f443a978fdf2bf57 Mon Sep 17 00:00:00 2001 From: Wolfgang Welz Date: Mon, 12 Feb 2024 17:04:55 +0100 Subject: [PATCH 2/2] update copyright --- host/tests/cmd.rs | 2 +- lib/src/builder/initialize.rs | 2 +- lib/src/builder/mod.rs | 2 +- lib/src/builder/prepare.rs | 2 +- lib/src/consts.rs | 2 +- lib/src/host/preflight.rs | 2 +- lib/src/host/provider/cached_rpc_provider.rs | 2 +- lib/src/host/provider/file_provider.rs | 2 +- lib/src/host/provider/mod.rs | 2 +- lib/src/host/provider/rpc_provider.rs | 2 +- lib/src/host/provider_db.rs | 2 +- lib/src/host/rpc_db.rs | 2 +- lib/src/host/verify.rs | 2 +- lib/src/input.rs | 2 +- lib/src/lib.rs | 2 +- lib/src/optimism/batcher_db.rs | 2 +- primitives/src/access_list.rs | 2 +- primitives/src/lib.rs | 2 +- primitives/src/transactions/ethereum.rs | 2 +- primitives/src/transactions/mod.rs | 2 +- primitives/src/transactions/optimism.rs | 2 +- primitives/src/transactions/signature.rs | 2 +- primitives/src/trie/mpt.rs | 2 +- testing/ef-tests/src/ethtests.rs | 2 +- testing/ef-tests/src/lib.rs | 2 +- testing/ef-tests/testguest/src/main.rs | 2 +- testing/ef-tests/tests/evm.rs | 2 +- testing/ef-tests/tests/executor.rs | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/host/tests/cmd.rs b/host/tests/cmd.rs index e16409f1..da5ba370 100644 --- a/host/tests/cmd.rs +++ b/host/tests/cmd.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/builder/initialize.rs b/lib/src/builder/initialize.rs index 6a3fc26e..e291e332 100644 --- a/lib/src/builder/initialize.rs +++ b/lib/src/builder/initialize.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/builder/mod.rs b/lib/src/builder/mod.rs index 9eb44c03..ad0facaa 100644 --- a/lib/src/builder/mod.rs +++ b/lib/src/builder/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/builder/prepare.rs b/lib/src/builder/prepare.rs index 6cf62c57..e38a1f7d 100644 --- a/lib/src/builder/prepare.rs +++ b/lib/src/builder/prepare.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/consts.rs b/lib/src/consts.rs index 0910b797..59555405 100644 --- a/lib/src/consts.rs +++ b/lib/src/consts.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/preflight.rs b/lib/src/host/preflight.rs index f9711554..e64f38dc 100644 --- a/lib/src/host/preflight.rs +++ b/lib/src/host/preflight.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/provider/cached_rpc_provider.rs b/lib/src/host/provider/cached_rpc_provider.rs index 400c132f..4578bf6d 100644 --- a/lib/src/host/provider/cached_rpc_provider.rs +++ b/lib/src/host/provider/cached_rpc_provider.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/provider/file_provider.rs b/lib/src/host/provider/file_provider.rs index 17ddf1e1..fd1fc67c 100644 --- a/lib/src/host/provider/file_provider.rs +++ b/lib/src/host/provider/file_provider.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/provider/mod.rs b/lib/src/host/provider/mod.rs index 8d98e6b5..1993bbfd 100644 --- a/lib/src/host/provider/mod.rs +++ b/lib/src/host/provider/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/provider/rpc_provider.rs b/lib/src/host/provider/rpc_provider.rs index 6d9bc5eb..3bd5756c 100644 --- a/lib/src/host/provider/rpc_provider.rs +++ b/lib/src/host/provider/rpc_provider.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/provider_db.rs b/lib/src/host/provider_db.rs index 6c487d87..72a28230 100644 --- a/lib/src/host/provider_db.rs +++ b/lib/src/host/provider_db.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/rpc_db.rs b/lib/src/host/rpc_db.rs index be5abd68..a9e67997 100644 --- a/lib/src/host/rpc_db.rs +++ b/lib/src/host/rpc_db.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/host/verify.rs b/lib/src/host/verify.rs index e580cc8c..391961e6 100644 --- a/lib/src/host/verify.rs +++ b/lib/src/host/verify.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/input.rs b/lib/src/input.rs index a3b0ab22..528f80bc 100644 --- a/lib/src/input.rs +++ b/lib/src/input.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 96c57268..9f3a0da4 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/optimism/batcher_db.rs b/lib/src/optimism/batcher_db.rs index 69a61e9d..84985422 100644 --- a/lib/src/optimism/batcher_db.rs +++ b/lib/src/optimism/batcher_db.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/access_list.rs b/primitives/src/access_list.rs index 03817bc8..c22f9111 100644 --- a/primitives/src/access_list.rs +++ b/primitives/src/access_list.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 7f2d5739..0e244ea4 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/transactions/ethereum.rs b/primitives/src/transactions/ethereum.rs index 76593a95..42a0f368 100644 --- a/primitives/src/transactions/ethereum.rs +++ b/primitives/src/transactions/ethereum.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/transactions/mod.rs b/primitives/src/transactions/mod.rs index a8e579bd..a0db4adf 100644 --- a/primitives/src/transactions/mod.rs +++ b/primitives/src/transactions/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/transactions/optimism.rs b/primitives/src/transactions/optimism.rs index 2db8c711..097cdf03 100644 --- a/primitives/src/transactions/optimism.rs +++ b/primitives/src/transactions/optimism.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/transactions/signature.rs b/primitives/src/transactions/signature.rs index 6150a8c3..1b18d5d0 100644 --- a/primitives/src/transactions/signature.rs +++ b/primitives/src/transactions/signature.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/trie/mpt.rs b/primitives/src/trie/mpt.rs index 148c7245..b7f04554 100644 --- a/primitives/src/trie/mpt.rs +++ b/primitives/src/trie/mpt.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/ef-tests/src/ethtests.rs b/testing/ef-tests/src/ethtests.rs index ae850480..59a87e25 100644 --- a/testing/ef-tests/src/ethtests.rs +++ b/testing/ef-tests/src/ethtests.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/ef-tests/src/lib.rs b/testing/ef-tests/src/lib.rs index 494eb557..1bf8a69a 100644 --- a/testing/ef-tests/src/lib.rs +++ b/testing/ef-tests/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/ef-tests/testguest/src/main.rs b/testing/ef-tests/testguest/src/main.rs index 53a05456..2c31f89d 100644 --- a/testing/ef-tests/testguest/src/main.rs +++ b/testing/ef-tests/testguest/src/main.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/ef-tests/tests/evm.rs b/testing/ef-tests/tests/evm.rs index be59605f..9d68a475 100644 --- a/testing/ef-tests/tests/evm.rs +++ b/testing/ef-tests/tests/evm.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/ef-tests/tests/executor.rs b/testing/ef-tests/tests/executor.rs index baecba67..a9b8bb9d 100644 --- a/testing/ef-tests/tests/executor.rs +++ b/testing/ef-tests/tests/executor.rs @@ -1,4 +1,4 @@ -// Copyright 2023 RISC Zero, Inc. +// Copyright 2024 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.