Skip to content

Commit

Permalink
Some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lrubasze committed Dec 18, 2024
1 parent 174b220 commit a4629ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,3 @@ mod execution_trace_test {
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ impl From<&BucketSnapshot> for ResourceSpecifier {

#[derive(Debug, Clone)]
pub enum VaultOp {
Put(ResourceAddress, Decimal), // TODO: add non-fungible support
Put(ResourceAddress, Decimal),
Take(ResourceAddress, Decimal),
// We intentionally disregard IDs and only use the amount for non-fungibles.
// This maintains backward compatibility for users of the `ResourceChange` struct.
TakeNonFungibles(ResourceAddress, Decimal),
TakeAdvanced(ResourceAddress, Decimal),
LockFee(Decimal, bool),
Expand Down

0 comments on commit a4629ce

Please sign in to comment.