From d85a01c353c6f7db915b1fcc21d36d78b9c82ca8 Mon Sep 17 00:00:00 2001 From: 0xDjango <0xDjangoOnChain@protonmail.com> Date: Tue, 25 Mar 2025 14:58:15 -0400 Subject: [PATCH] fix: solidity param --- pages/lazer/integrate-as-consumer/evm.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/lazer/integrate-as-consumer/evm.mdx b/pages/lazer/integrate-as-consumer/evm.mdx index c05a5395..57bdc1d7 100644 --- a/pages/lazer/integrate-as-consumer/evm.mdx +++ b/pages/lazer/integrate-as-consumer/evm.mdx @@ -57,7 +57,7 @@ Add an argument of type `bytes calldata{:solidity}` to the method which will rec ```solidity copy function updatePrice(bytes calldata priceUpdate) public payable { uint256 verification_fee = pythLazer.verification_fee(); - (bytes calldata payload, ) = verifyUpdate{ value: verification_fee }(update); + (bytes calldata payload, ) = verifyUpdate{ value: verification_fee }(priceUpdate); //... }