From 69ae2104b17cfecc9375d5b2aaf6afd48f79a3d3 Mon Sep 17 00:00:00 2001 From: Brean0 Date: Mon, 9 Sep 2024 18:47:12 +0200 Subject: [PATCH] update receiver facet root. --- protocol/contracts/beanstalk/migration/L1RecieverFacet.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/contracts/beanstalk/migration/L1RecieverFacet.sol b/protocol/contracts/beanstalk/migration/L1RecieverFacet.sol index ec1f7eef6..f84b9d5d8 100644 --- a/protocol/contracts/beanstalk/migration/L1RecieverFacet.sol +++ b/protocol/contracts/beanstalk/migration/L1RecieverFacet.sol @@ -411,7 +411,7 @@ contract L1RecieverFacet is ReentrancyGuard, Order { bytes32 leaf = keccak256( bytes.concat(keccak256(abi.encode(owner, keccak256(abi.encode(owner, orders))))) ); - return MerkleProof.verify(proof, PODLISTING_ORDER_MERKLE_ROOT, leaf); + return MerkleProof.verify(proof, POD_ORDER_MERKLE_ROOT, leaf); } //////////// MIGRATION HELPERS ////////////