Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve parents naming #2494

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ant-protocol/src/storage/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub type TransactionContent = [u8; 32];
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Hash, Ord, PartialOrd)]
pub struct Transaction {
pub owner: PublicKey,
pub parent: Vec<PublicKey>,
pub parents: Vec<PublicKey>,
pub content: TransactionContent,
pub outputs: Vec<(PublicKey, TransactionContent)>,
/// signs the above 4 fields with the owners key
Expand All @@ -29,14 +29,14 @@ pub struct Transaction {
impl Transaction {
pub fn new(
owner: PublicKey,
parent: Vec<PublicKey>,
parents: Vec<PublicKey>,
content: TransactionContent,
outputs: Vec<(PublicKey, TransactionContent)>,
signature: Signature,
) -> Self {
Self {
owner,
parent,
parents,
content,
outputs,
signature,
Expand All @@ -53,7 +53,7 @@ impl Transaction {
bytes.extend_from_slice("parent".as_bytes());
bytes.extend_from_slice(
&self
.parent
.parents
.iter()
.map(|p| p.to_bytes())
.collect::<Vec<_>>()
Expand Down
Loading