From 4210b1aaedcd1799714ba15ab51ca43c65a3f729 Mon Sep 17 00:00:00 2001 From: User Date: Mon, 22 May 2023 11:28:19 -0700 Subject: [PATCH] Fix typo in file headers --- .integration/src/lib.rs | 2 +- account/src/lib.rs | 2 +- build.rs | 2 +- cli/src/commands/account.rs | 2 +- cli/src/commands/clean.rs | 2 +- cli/src/commands/developer/decrypt.rs | 2 +- cli/src/commands/developer/deploy.rs | 2 +- cli/src/commands/developer/execute.rs | 2 +- cli/src/commands/developer/mod.rs | 2 +- cli/src/commands/developer/scan.rs | 2 +- cli/src/commands/developer/transfer.rs | 2 +- cli/src/commands/mod.rs | 2 +- cli/src/commands/start.rs | 2 +- cli/src/commands/update.rs | 2 +- cli/src/helpers/bech32m.rs | 2 +- cli/src/helpers/log_writer.rs | 2 +- cli/src/helpers/logger.rs | 2 +- cli/src/helpers/mod.rs | 2 +- cli/src/helpers/updater.rs | 2 +- cli/src/lib.rs | 2 +- display/src/lib.rs | 2 +- display/src/pages/logs.rs | 2 +- display/src/pages/mod.rs | 2 +- display/src/pages/overview.rs | 2 +- display/src/tabs.rs | 2 +- node/cdn/src/blocks.rs | 2 +- node/cdn/src/lib.rs | 2 +- node/consensus/src/helpers/mod.rs | 2 +- node/consensus/src/lib.rs | 2 +- node/consensus/src/memory_pool/mod.rs | 2 +- node/consensus/src/memory_pool/solutions.rs | 2 +- node/consensus/src/memory_pool/transactions.rs | 2 +- node/consensus/src/tests.rs | 2 +- node/messages/src/beacon_propose.rs | 2 +- node/messages/src/beacon_timeout.rs | 2 +- node/messages/src/beacon_vote.rs | 2 +- node/messages/src/block_request.rs | 2 +- node/messages/src/block_response.rs | 2 +- node/messages/src/challenge_request.rs | 2 +- node/messages/src/challenge_response.rs | 2 +- node/messages/src/disconnect.rs | 2 +- node/messages/src/helpers/block_locators.rs | 2 +- node/messages/src/helpers/codec.rs | 2 +- node/messages/src/helpers/data.rs | 2 +- node/messages/src/helpers/disconnect.rs | 2 +- node/messages/src/helpers/mod.rs | 2 +- node/messages/src/helpers/node_type.rs | 2 +- node/messages/src/helpers/noise_codec.rs | 2 +- node/messages/src/lib.rs | 2 +- node/messages/src/peer_request.rs | 2 +- node/messages/src/peer_response.rs | 2 +- node/messages/src/ping.rs | 2 +- node/messages/src/pong.rs | 2 +- node/messages/src/puzzle_request.rs | 2 +- node/messages/src/puzzle_response.rs | 2 +- node/messages/src/unconfirmed_solution.rs | 2 +- node/messages/src/unconfirmed_transaction.rs | 2 +- node/metrics/src/lib.rs | 2 +- node/metrics/src/names.rs | 2 +- node/rest/src/helpers/auth.rs | 2 +- node/rest/src/helpers/error.rs | 2 +- node/rest/src/helpers/mod.rs | 2 +- node/rest/src/lib.rs | 2 +- node/rest/src/routes.rs | 2 +- node/router/src/handshake.rs | 2 +- node/router/src/heartbeat.rs | 2 +- node/router/src/helpers/cache.rs | 2 +- node/router/src/helpers/mod.rs | 2 +- node/router/src/helpers/peer.rs | 2 +- node/router/src/helpers/resolver.rs | 2 +- node/router/src/helpers/sync.rs | 2 +- node/router/src/inbound.rs | 2 +- node/router/src/lib.rs | 2 +- node/router/src/outbound.rs | 2 +- node/router/src/routing.rs | 2 +- node/router/tests/cleanups.rs | 2 +- node/router/tests/common/mod.rs | 2 +- node/router/tests/common/router.rs | 2 +- node/router/tests/connect.rs | 2 +- node/router/tests/disconnect.rs | 2 +- node/src/beacon/mod.rs | 2 +- node/src/beacon/router.rs | 2 +- node/src/client/mod.rs | 2 +- node/src/client/router.rs | 2 +- node/src/helpers.rs | 2 +- node/src/lib.rs | 2 +- node/src/prover/mod.rs | 2 +- node/src/prover/router.rs | 2 +- node/src/traits.rs | 2 +- node/src/validator/mod.rs | 2 +- node/src/validator/router.rs | 2 +- node/tcp/src/helpers/config.rs | 2 +- node/tcp/src/helpers/connections.rs | 2 +- node/tcp/src/helpers/known_peers.rs | 2 +- node/tcp/src/helpers/mod.rs | 2 +- node/tcp/src/helpers/stats.rs | 2 +- node/tcp/src/lib.rs | 2 +- node/tcp/src/protocols/disconnect.rs | 2 +- node/tcp/src/protocols/handshake.rs | 2 +- node/tcp/src/protocols/mod.rs | 2 +- node/tcp/src/protocols/on_connect.rs | 2 +- node/tcp/src/protocols/reading.rs | 2 +- node/tcp/src/protocols/writing.rs | 2 +- node/tcp/src/tcp.rs | 2 +- node/tests/common/mod.rs | 2 +- node/tests/common/node.rs | 2 +- node/tests/common/test_peer.rs | 2 +- node/tests/handshake.rs | 2 +- node/tests/peering.rs | 2 +- snarkos/main.rs | 2 +- 110 files changed, 110 insertions(+), 110 deletions(-) diff --git a/.integration/src/lib.rs b/.integration/src/lib.rs index bd4dd7b675..1513c4788e 100644 --- a/.integration/src/lib.rs +++ b/.integration/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/account/src/lib.rs b/account/src/lib.rs index 93eaae0855..11270fe443 100644 --- a/account/src/lib.rs +++ b/account/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/build.rs b/build.rs index 4abb8a6119..ed7ddc576e 100644 --- a/build.rs +++ b/build.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/account.rs b/cli/src/commands/account.rs index 8354df50ae..24e582b8e1 100644 --- a/cli/src/commands/account.rs +++ b/cli/src/commands/account.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/clean.rs b/cli/src/commands/clean.rs index eab55c78b4..67e467ee7a 100644 --- a/cli/src/commands/clean.rs +++ b/cli/src/commands/clean.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/decrypt.rs b/cli/src/commands/developer/decrypt.rs index 4e1caeb83e..c5e7a89abd 100644 --- a/cli/src/commands/developer/decrypt.rs +++ b/cli/src/commands/developer/decrypt.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/deploy.rs b/cli/src/commands/developer/deploy.rs index 3e35aca0b6..c73876e87e 100644 --- a/cli/src/commands/developer/deploy.rs +++ b/cli/src/commands/developer/deploy.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/execute.rs b/cli/src/commands/developer/execute.rs index 428722901a..e987516746 100644 --- a/cli/src/commands/developer/execute.rs +++ b/cli/src/commands/developer/execute.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/mod.rs b/cli/src/commands/developer/mod.rs index e91238f157..45af59bb0f 100644 --- a/cli/src/commands/developer/mod.rs +++ b/cli/src/commands/developer/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/scan.rs b/cli/src/commands/developer/scan.rs index e8ba28d47b..e854bcf2ef 100644 --- a/cli/src/commands/developer/scan.rs +++ b/cli/src/commands/developer/scan.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/developer/transfer.rs b/cli/src/commands/developer/transfer.rs index d46674bdcd..81f65ae12b 100644 --- a/cli/src/commands/developer/transfer.rs +++ b/cli/src/commands/developer/transfer.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/mod.rs b/cli/src/commands/mod.rs index 5cb6d0a9ca..07977226d0 100644 --- a/cli/src/commands/mod.rs +++ b/cli/src/commands/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/start.rs b/cli/src/commands/start.rs index 1182a69b6f..c0bd65a1de 100644 --- a/cli/src/commands/start.rs +++ b/cli/src/commands/start.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/commands/update.rs b/cli/src/commands/update.rs index 210b451e82..d7dfc6d653 100644 --- a/cli/src/commands/update.rs +++ b/cli/src/commands/update.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/helpers/bech32m.rs b/cli/src/helpers/bech32m.rs index 3aaf9efd88..bfd026d7ad 100644 --- a/cli/src/helpers/bech32m.rs +++ b/cli/src/helpers/bech32m.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/helpers/log_writer.rs b/cli/src/helpers/log_writer.rs index 4f76605bb7..b99b126ed2 100644 --- a/cli/src/helpers/log_writer.rs +++ b/cli/src/helpers/log_writer.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/helpers/logger.rs b/cli/src/helpers/logger.rs index 5fe7132731..10faab240f 100644 --- a/cli/src/helpers/logger.rs +++ b/cli/src/helpers/logger.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/helpers/mod.rs b/cli/src/helpers/mod.rs index e4891413e7..10ed0febbb 100644 --- a/cli/src/helpers/mod.rs +++ b/cli/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/helpers/updater.rs b/cli/src/helpers/updater.rs index 40deb242f9..8462bafb80 100644 --- a/cli/src/helpers/updater.rs +++ b/cli/src/helpers/updater.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/cli/src/lib.rs b/cli/src/lib.rs index 8bc0d19b9a..140bea8ef4 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/display/src/lib.rs b/display/src/lib.rs index 2954b96e21..fb0f0b2253 100644 --- a/display/src/lib.rs +++ b/display/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/display/src/pages/logs.rs b/display/src/pages/logs.rs index 87227e43d4..58dd477678 100644 --- a/display/src/pages/logs.rs +++ b/display/src/pages/logs.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/display/src/pages/mod.rs b/display/src/pages/mod.rs index f7b6dd4cc9..cc62b8ce75 100644 --- a/display/src/pages/mod.rs +++ b/display/src/pages/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/display/src/pages/overview.rs b/display/src/pages/overview.rs index 6e00823b29..7c8f12b0bb 100644 --- a/display/src/pages/overview.rs +++ b/display/src/pages/overview.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/display/src/tabs.rs b/display/src/tabs.rs index 57e2331cf6..eeb230e4bd 100644 --- a/display/src/tabs.rs +++ b/display/src/tabs.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/cdn/src/blocks.rs b/node/cdn/src/blocks.rs index a7315143cd..5546eb405e 100644 --- a/node/cdn/src/blocks.rs +++ b/node/cdn/src/blocks.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/cdn/src/lib.rs b/node/cdn/src/lib.rs index ae7ecc396e..47bf3ccd3a 100644 --- a/node/cdn/src/lib.rs +++ b/node/cdn/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/helpers/mod.rs b/node/consensus/src/helpers/mod.rs index 59f7458b85..afd8e88c7f 100644 --- a/node/consensus/src/helpers/mod.rs +++ b/node/consensus/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/lib.rs b/node/consensus/src/lib.rs index fdde13eea9..fd5ec1de3c 100644 --- a/node/consensus/src/lib.rs +++ b/node/consensus/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/memory_pool/mod.rs b/node/consensus/src/memory_pool/mod.rs index 321d0a9036..32fe035c9e 100644 --- a/node/consensus/src/memory_pool/mod.rs +++ b/node/consensus/src/memory_pool/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/memory_pool/solutions.rs b/node/consensus/src/memory_pool/solutions.rs index 9be18f285e..3ea9c137d9 100644 --- a/node/consensus/src/memory_pool/solutions.rs +++ b/node/consensus/src/memory_pool/solutions.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/memory_pool/transactions.rs b/node/consensus/src/memory_pool/transactions.rs index b89cd76287..05466aec1e 100644 --- a/node/consensus/src/memory_pool/transactions.rs +++ b/node/consensus/src/memory_pool/transactions.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/consensus/src/tests.rs b/node/consensus/src/tests.rs index 3687800a59..4c3ad86f7f 100644 --- a/node/consensus/src/tests.rs +++ b/node/consensus/src/tests.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/beacon_propose.rs b/node/messages/src/beacon_propose.rs index dd8acd9e2c..96b567363e 100644 --- a/node/messages/src/beacon_propose.rs +++ b/node/messages/src/beacon_propose.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/beacon_timeout.rs b/node/messages/src/beacon_timeout.rs index 98c3d66923..4b20e83d7c 100644 --- a/node/messages/src/beacon_timeout.rs +++ b/node/messages/src/beacon_timeout.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/beacon_vote.rs b/node/messages/src/beacon_vote.rs index 72b746c8f4..5bc66ba58d 100644 --- a/node/messages/src/beacon_vote.rs +++ b/node/messages/src/beacon_vote.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/block_request.rs b/node/messages/src/block_request.rs index 6f9db2b6be..b32580ce0f 100644 --- a/node/messages/src/block_request.rs +++ b/node/messages/src/block_request.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/block_response.rs b/node/messages/src/block_response.rs index 45c7783723..f21e568e77 100644 --- a/node/messages/src/block_response.rs +++ b/node/messages/src/block_response.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/challenge_request.rs b/node/messages/src/challenge_request.rs index 3654649611..483ddfec72 100644 --- a/node/messages/src/challenge_request.rs +++ b/node/messages/src/challenge_request.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/challenge_response.rs b/node/messages/src/challenge_response.rs index 0c8e42b6b1..2a822e8e28 100644 --- a/node/messages/src/challenge_response.rs +++ b/node/messages/src/challenge_response.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/disconnect.rs b/node/messages/src/disconnect.rs index 26f5832946..836bc46940 100644 --- a/node/messages/src/disconnect.rs +++ b/node/messages/src/disconnect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/block_locators.rs b/node/messages/src/helpers/block_locators.rs index 56ac1aecb3..e1dbd76dc0 100644 --- a/node/messages/src/helpers/block_locators.rs +++ b/node/messages/src/helpers/block_locators.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/codec.rs b/node/messages/src/helpers/codec.rs index 8a2b99d5d0..d9e8a290fd 100644 --- a/node/messages/src/helpers/codec.rs +++ b/node/messages/src/helpers/codec.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/data.rs b/node/messages/src/helpers/data.rs index d17f55883c..0e966a6a4e 100644 --- a/node/messages/src/helpers/data.rs +++ b/node/messages/src/helpers/data.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/disconnect.rs b/node/messages/src/helpers/disconnect.rs index 8813b68d89..3b6147b172 100644 --- a/node/messages/src/helpers/disconnect.rs +++ b/node/messages/src/helpers/disconnect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/mod.rs b/node/messages/src/helpers/mod.rs index ab813c03bd..63c02d90a9 100644 --- a/node/messages/src/helpers/mod.rs +++ b/node/messages/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/node_type.rs b/node/messages/src/helpers/node_type.rs index 0d48c7a4a6..082ffdfd54 100644 --- a/node/messages/src/helpers/node_type.rs +++ b/node/messages/src/helpers/node_type.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/helpers/noise_codec.rs b/node/messages/src/helpers/noise_codec.rs index 64f062411b..627d597263 100644 --- a/node/messages/src/helpers/noise_codec.rs +++ b/node/messages/src/helpers/noise_codec.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/lib.rs b/node/messages/src/lib.rs index e0baef0ea0..74cf0ea924 100644 --- a/node/messages/src/lib.rs +++ b/node/messages/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/peer_request.rs b/node/messages/src/peer_request.rs index e4ed95b96a..855051d5de 100644 --- a/node/messages/src/peer_request.rs +++ b/node/messages/src/peer_request.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/peer_response.rs b/node/messages/src/peer_response.rs index a39f349feb..46ba04a7f5 100644 --- a/node/messages/src/peer_response.rs +++ b/node/messages/src/peer_response.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/ping.rs b/node/messages/src/ping.rs index f8436d153d..418dd1c39b 100644 --- a/node/messages/src/ping.rs +++ b/node/messages/src/ping.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/pong.rs b/node/messages/src/pong.rs index c573051d11..9d67a9deda 100644 --- a/node/messages/src/pong.rs +++ b/node/messages/src/pong.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/puzzle_request.rs b/node/messages/src/puzzle_request.rs index e9349e65b1..75aceb5acf 100644 --- a/node/messages/src/puzzle_request.rs +++ b/node/messages/src/puzzle_request.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/puzzle_response.rs b/node/messages/src/puzzle_response.rs index cd5ae9af36..3bb6ba8840 100644 --- a/node/messages/src/puzzle_response.rs +++ b/node/messages/src/puzzle_response.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/unconfirmed_solution.rs b/node/messages/src/unconfirmed_solution.rs index 3ef36e9e34..4d48ae34b7 100644 --- a/node/messages/src/unconfirmed_solution.rs +++ b/node/messages/src/unconfirmed_solution.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/messages/src/unconfirmed_transaction.rs b/node/messages/src/unconfirmed_transaction.rs index c7a5235699..a0dc0ef2ec 100644 --- a/node/messages/src/unconfirmed_transaction.rs +++ b/node/messages/src/unconfirmed_transaction.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/metrics/src/lib.rs b/node/metrics/src/lib.rs index a35e4f9665..c094841245 100644 --- a/node/metrics/src/lib.rs +++ b/node/metrics/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/metrics/src/names.rs b/node/metrics/src/names.rs index 10ba3539ae..18fff735ed 100644 --- a/node/metrics/src/names.rs +++ b/node/metrics/src/names.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/rest/src/helpers/auth.rs b/node/rest/src/helpers/auth.rs index dd79887afc..8de1d526c7 100644 --- a/node/rest/src/helpers/auth.rs +++ b/node/rest/src/helpers/auth.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/rest/src/helpers/error.rs b/node/rest/src/helpers/error.rs index 21fb803801..c00216d01f 100644 --- a/node/rest/src/helpers/error.rs +++ b/node/rest/src/helpers/error.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/rest/src/helpers/mod.rs b/node/rest/src/helpers/mod.rs index 701de0c92a..a4469164f6 100644 --- a/node/rest/src/helpers/mod.rs +++ b/node/rest/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/rest/src/lib.rs b/node/rest/src/lib.rs index 84187840e6..5ed565580a 100644 --- a/node/rest/src/lib.rs +++ b/node/rest/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/rest/src/routes.rs b/node/rest/src/routes.rs index bf03f8b506..3dbd76d810 100644 --- a/node/rest/src/routes.rs +++ b/node/rest/src/routes.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/handshake.rs b/node/router/src/handshake.rs index 9b548dd3c7..37489dc988 100644 --- a/node/router/src/handshake.rs +++ b/node/router/src/handshake.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/heartbeat.rs b/node/router/src/heartbeat.rs index f6a4bd0a31..192a43c5a7 100644 --- a/node/router/src/heartbeat.rs +++ b/node/router/src/heartbeat.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/helpers/cache.rs b/node/router/src/helpers/cache.rs index 290f1fac4a..90a00644cc 100644 --- a/node/router/src/helpers/cache.rs +++ b/node/router/src/helpers/cache.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/helpers/mod.rs b/node/router/src/helpers/mod.rs index ab1ac941d2..6e43632ffb 100644 --- a/node/router/src/helpers/mod.rs +++ b/node/router/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/helpers/peer.rs b/node/router/src/helpers/peer.rs index 4ad5da41ac..379e16c19b 100644 --- a/node/router/src/helpers/peer.rs +++ b/node/router/src/helpers/peer.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/helpers/resolver.rs b/node/router/src/helpers/resolver.rs index c4a6fa1dd3..b849c9cd34 100644 --- a/node/router/src/helpers/resolver.rs +++ b/node/router/src/helpers/resolver.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/helpers/sync.rs b/node/router/src/helpers/sync.rs index 1d75c218a2..c2d830bc1e 100644 --- a/node/router/src/helpers/sync.rs +++ b/node/router/src/helpers/sync.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/inbound.rs b/node/router/src/inbound.rs index 499e997dda..d135a94cca 100644 --- a/node/router/src/inbound.rs +++ b/node/router/src/inbound.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/lib.rs b/node/router/src/lib.rs index f5f07dcddf..6ce4f3922c 100644 --- a/node/router/src/lib.rs +++ b/node/router/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/outbound.rs b/node/router/src/outbound.rs index ebe6abe3e7..16e6d1c070 100644 --- a/node/router/src/outbound.rs +++ b/node/router/src/outbound.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/src/routing.rs b/node/router/src/routing.rs index daacef4589..858840430c 100644 --- a/node/router/src/routing.rs +++ b/node/router/src/routing.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/tests/cleanups.rs b/node/router/tests/cleanups.rs index 763758ead3..dc1f65e7ef 100644 --- a/node/router/tests/cleanups.rs +++ b/node/router/tests/cleanups.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/tests/common/mod.rs b/node/router/tests/common/mod.rs index dacbee934a..38cf9b210e 100644 --- a/node/router/tests/common/mod.rs +++ b/node/router/tests/common/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/tests/common/router.rs b/node/router/tests/common/router.rs index e466fba827..1024c9ed3c 100644 --- a/node/router/tests/common/router.rs +++ b/node/router/tests/common/router.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/tests/connect.rs b/node/router/tests/connect.rs index 56922a1a4c..e3976a5430 100644 --- a/node/router/tests/connect.rs +++ b/node/router/tests/connect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/router/tests/disconnect.rs b/node/router/tests/disconnect.rs index 92b5ce4a09..e4fad58b52 100644 --- a/node/router/tests/disconnect.rs +++ b/node/router/tests/disconnect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/beacon/mod.rs b/node/src/beacon/mod.rs index 1539dcbc37..9051361cc9 100644 --- a/node/src/beacon/mod.rs +++ b/node/src/beacon/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/beacon/router.rs b/node/src/beacon/router.rs index d15b127536..56fb9c15d4 100644 --- a/node/src/beacon/router.rs +++ b/node/src/beacon/router.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/client/mod.rs b/node/src/client/mod.rs index 6ba0af638f..01623ad4b6 100644 --- a/node/src/client/mod.rs +++ b/node/src/client/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/client/router.rs b/node/src/client/router.rs index c1713912da..7351e85fd7 100644 --- a/node/src/client/router.rs +++ b/node/src/client/router.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/helpers.rs b/node/src/helpers.rs index 71dddee303..01847d3a65 100644 --- a/node/src/helpers.rs +++ b/node/src/helpers.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/lib.rs b/node/src/lib.rs index 2bd41fa781..ec523aa3eb 100644 --- a/node/src/lib.rs +++ b/node/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/prover/mod.rs b/node/src/prover/mod.rs index 0a8012c96e..e78e20b504 100644 --- a/node/src/prover/mod.rs +++ b/node/src/prover/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/prover/router.rs b/node/src/prover/router.rs index 5603344037..35cfe8b125 100644 --- a/node/src/prover/router.rs +++ b/node/src/prover/router.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/traits.rs b/node/src/traits.rs index 743754e063..173bafffe4 100644 --- a/node/src/traits.rs +++ b/node/src/traits.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/validator/mod.rs b/node/src/validator/mod.rs index 165934f345..7a21078a4c 100644 --- a/node/src/validator/mod.rs +++ b/node/src/validator/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/src/validator/router.rs b/node/src/validator/router.rs index c1f464eb61..e2a777373e 100644 --- a/node/src/validator/router.rs +++ b/node/src/validator/router.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/helpers/config.rs b/node/tcp/src/helpers/config.rs index 66fb0f1b12..3a63f76947 100644 --- a/node/tcp/src/helpers/config.rs +++ b/node/tcp/src/helpers/config.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/helpers/connections.rs b/node/tcp/src/helpers/connections.rs index 3f071edfc9..c794b9d161 100644 --- a/node/tcp/src/helpers/connections.rs +++ b/node/tcp/src/helpers/connections.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/helpers/known_peers.rs b/node/tcp/src/helpers/known_peers.rs index e9bac8b4dd..5b4b296b57 100644 --- a/node/tcp/src/helpers/known_peers.rs +++ b/node/tcp/src/helpers/known_peers.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/helpers/mod.rs b/node/tcp/src/helpers/mod.rs index 7a3534e4d4..c437ca07dc 100644 --- a/node/tcp/src/helpers/mod.rs +++ b/node/tcp/src/helpers/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/helpers/stats.rs b/node/tcp/src/helpers/stats.rs index 15d1f16837..2889561b8e 100644 --- a/node/tcp/src/helpers/stats.rs +++ b/node/tcp/src/helpers/stats.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/lib.rs b/node/tcp/src/lib.rs index 53e7bbf20f..2f8521c808 100644 --- a/node/tcp/src/lib.rs +++ b/node/tcp/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/disconnect.rs b/node/tcp/src/protocols/disconnect.rs index 7da4681b38..36075db5e6 100644 --- a/node/tcp/src/protocols/disconnect.rs +++ b/node/tcp/src/protocols/disconnect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/handshake.rs b/node/tcp/src/protocols/handshake.rs index 7291e6b315..cce5c7e672 100644 --- a/node/tcp/src/protocols/handshake.rs +++ b/node/tcp/src/protocols/handshake.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/mod.rs b/node/tcp/src/protocols/mod.rs index ed0bf59778..2c98571398 100644 --- a/node/tcp/src/protocols/mod.rs +++ b/node/tcp/src/protocols/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/on_connect.rs b/node/tcp/src/protocols/on_connect.rs index 3f26ae3031..d116f69a44 100644 --- a/node/tcp/src/protocols/on_connect.rs +++ b/node/tcp/src/protocols/on_connect.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/reading.rs b/node/tcp/src/protocols/reading.rs index 8d4505f688..c4b3a5f7f8 100644 --- a/node/tcp/src/protocols/reading.rs +++ b/node/tcp/src/protocols/reading.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/protocols/writing.rs b/node/tcp/src/protocols/writing.rs index d69f84184f..5d15dbcda8 100644 --- a/node/tcp/src/protocols/writing.rs +++ b/node/tcp/src/protocols/writing.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tcp/src/tcp.rs b/node/tcp/src/tcp.rs index 3a7fd42ec4..8a97c492cd 100644 --- a/node/tcp/src/tcp.rs +++ b/node/tcp/src/tcp.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tests/common/mod.rs b/node/tests/common/mod.rs index c6e19f50c4..8e949a66e4 100644 --- a/node/tests/common/mod.rs +++ b/node/tests/common/mod.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tests/common/node.rs b/node/tests/common/node.rs index efc0ac69f4..3053faa45b 100644 --- a/node/tests/common/node.rs +++ b/node/tests/common/node.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tests/common/test_peer.rs b/node/tests/common/test_peer.rs index a38e631e7a..f792e84140 100644 --- a/node/tests/common/test_peer.rs +++ b/node/tests/common/test_peer.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tests/handshake.rs b/node/tests/handshake.rs index b1a1fac16f..9dd082d563 100644 --- a/node/tests/handshake.rs +++ b/node/tests/handshake.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/node/tests/peering.rs b/node/tests/peering.rs index d0ff54410f..00c18b10ce 100644 --- a/node/tests/peering.rs +++ b/node/tests/peering.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // 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/snarkos/main.rs b/snarkos/main.rs index 4f8b4740b9..36eb24fa50 100644 --- a/snarkos/main.rs +++ b/snarkos/main.rs @@ -1,5 +1,5 @@ // Copyright (C) 2019-2023 Aleo Systems Inc. -// This file is part of the snarkVM library. +// This file is part of the snarkOS library. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.