File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed
Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change @@ -107,28 +107,7 @@ contract PythLazer is OwnableUpgradeable, UUPSUpgradeable {
107107 }
108108 }
109109
110- /// @notice Verify signature and parse update into structured data
111- /// @dev Combines verifyUpdate() with parseUpdateFromPayload() for convenience and safety
112- /// @param update The complete update message (EVM format with signature)
113- /// @return payload The verified payload bytes
114- /// @return parsedUpdate The parsed Update struct with all feeds and properties
115- function verifyAndParseUpdate (
116- bytes calldata update
117- )
118- external
119- payable
120- returns (
121- bytes calldata payload ,
122- PythLazerStructs.Update memory parsedUpdate
123- )
124- {
125- (payload, ) = verifyUpdate (update);
126-
127- // Parse the verified payload
128- parsedUpdate = PythLazerLib.parseUpdateFromPayload (payload);
129- }
130-
131110 function version () public pure returns (string memory ) {
132- return "0.2.0 " ;
111+ return "0.2.1 " ;
133112 }
134113}
You can’t perform that action at this time.
0 commit comments