Skip to content

Commit

Permalink
Merge pull request #44 from ProjectOpenSea/drop-unused-fulfillment-va…
Browse files Browse the repository at this point in the history
…riable

remove an unused variable in FulfillmentApplier
  • Loading branch information
0age authored Feb 29, 2024
2 parents e192252 + b82ea4e commit b85b304
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/core/lib/FulfillmentApplier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,6 @@ contract FulfillmentApplier is FulfillmentApplicationErrors {
// fulfillment can be added back to the first item.
let firstFulfillmentHeadPtr := add(offerComponents, OneWord)
if xor(firstFulfillmentHeadPtr, fulfillmentHeadPtr) {
let firstFulfillmentPtr :=
mload(firstFulfillmentHeadPtr)
let fulfillmentPtr := mload(fulfillmentHeadPtr)
mstore(firstFulfillmentHeadPtr, fulfillmentPtr)
}
Expand Down Expand Up @@ -739,8 +737,6 @@ contract FulfillmentApplier is FulfillmentApplicationErrors {
let firstFulfillmentHeadPtr :=
add(considerationComponents, OneWord)
if xor(firstFulfillmentHeadPtr, fulfillmentHeadPtr) {
let firstFulfillmentPtr :=
mload(firstFulfillmentHeadPtr)
let fulfillmentPtr := mload(fulfillmentHeadPtr)
mstore(firstFulfillmentHeadPtr, fulfillmentPtr)
}
Expand Down

0 comments on commit b85b304

Please sign in to comment.