From 196c96c911e0036a6ff42a4cfbd0525dfc54f401 Mon Sep 17 00:00:00 2001 From: Aregnaz Harutyunyan <> Date: Wed, 4 Dec 2024 12:42:09 +0400 Subject: [PATCH] Updated copyright info --- api/src/transactions.rs | 2 ++ aptos-move/aptos-debugger/src/aptos_debugger.rs | 2 ++ aptos-move/aptos-vm/src/aptos_vm.rs | 1 - aptos-move/e2e-tests/src/executor.rs | 2 ++ .../src/transaction_shuffler/fairness/conflict_key/entry_fun.rs | 2 ++ .../fairness/conflict_key/entry_fun_module.rs | 2 ++ third_party/move/move-core/types/src/vm_status.rs | 2 ++ 7 files changed, 12 insertions(+), 1 deletion(-) diff --git a/api/src/transactions.rs b/api/src/transactions.rs index a8c549ffa73710..819660892b4fc9 100644 --- a/api/src/transactions.rs +++ b/api/src/transactions.rs @@ -1,6 +1,8 @@ // Copyright © Aptos Foundation // Parts of the project are originally copyright © Meta Platforms, Inc. // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. use crate::{ accept_type::AcceptType, diff --git a/aptos-move/aptos-debugger/src/aptos_debugger.rs b/aptos-move/aptos-debugger/src/aptos_debugger.rs index c83446ad9974af..60787c5ead048f 100644 --- a/aptos-move/aptos-debugger/src/aptos_debugger.rs +++ b/aptos-move/aptos-debugger/src/aptos_debugger.rs @@ -1,5 +1,7 @@ // Copyright © Aptos Foundation // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. use anyhow::{bail, format_err, Result}; use aptos_gas_profiling::{GasProfiler, TransactionGasLog}; diff --git a/aptos-move/aptos-vm/src/aptos_vm.rs b/aptos-move/aptos-vm/src/aptos_vm.rs index 5f19ef6df1e00a..ebf99a0be2d22c 100644 --- a/aptos-move/aptos-vm/src/aptos_vm.rs +++ b/aptos-move/aptos-vm/src/aptos_vm.rs @@ -836,7 +836,6 @@ impl AptosVM { }, TransactionPayload::EntryFunction(entry_fn) => { session.execute(|session| { - // TODO To enclosed payload validation as well before actually executing the entry function self.validate_and_execute_entry_function( resolver, session, diff --git a/aptos-move/e2e-tests/src/executor.rs b/aptos-move/e2e-tests/src/executor.rs index 0c04d61703a49a..ef75c87dc9e79f 100644 --- a/aptos-move/e2e-tests/src/executor.rs +++ b/aptos-move/e2e-tests/src/executor.rs @@ -1,6 +1,8 @@ // Copyright © Aptos Foundation // Parts of the project are originally copyright © Meta Platforms, Inc. // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. //! Support for running the VM to execute and verify transactions. diff --git a/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun.rs b/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun.rs index a189d8ad85c39d..52291dd219ea86 100644 --- a/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun.rs +++ b/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun.rs @@ -1,5 +1,7 @@ // Copyright © Aptos Foundation // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. use crate::transaction_shuffler::fairness::conflict_key::ConflictKey; use aptos_types::transaction::automation::AutomationTransactionPayload; diff --git a/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun_module.rs b/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun_module.rs index 92afc5ebaa00c0..79e9a3ac267e1d 100644 --- a/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun_module.rs +++ b/consensus/src/transaction_shuffler/fairness/conflict_key/entry_fun_module.rs @@ -1,5 +1,7 @@ // Copyright © Aptos Foundation // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. use crate::transaction_shuffler::fairness::conflict_key::ConflictKey; use aptos_types::transaction::automation::AutomationTransactionPayload; diff --git a/third_party/move/move-core/types/src/vm_status.rs b/third_party/move/move-core/types/src/vm_status.rs index 39cb488c1feb26..ad5e91ce0de2d0 100644 --- a/third_party/move/move-core/types/src/vm_status.rs +++ b/third_party/move/move-core/types/src/vm_status.rs @@ -1,6 +1,8 @@ // Copyright (c) The Diem Core Contributors // Copyright (c) The Move Contributors // SPDX-License-Identifier: Apache-2.0 +// +// Copyright (c) 2024 Supra. #![allow(clippy::unit_arg)] #![allow(clippy::arc_with_non_send_sync)]