From a7ce29644b5548e4744002c7c2edd1ede417b99d Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 24 Oct 2024 18:26:14 +0300 Subject: [PATCH] Fixed Syntax Error --- docs/pages/contracts/rewards.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/pages/contracts/rewards.mdx b/docs/pages/contracts/rewards.mdx index ffc3db2c..e2012be7 100644 --- a/docs/pages/contracts/rewards.mdx +++ b/docs/pages/contracts/rewards.mdx @@ -121,12 +121,11 @@ function withdrawFor(address to, uint256 amount) external; ```solidity function withdrawWithSig( address from, - address to + address to, uint256 amount, uint256 deadline, uint8 v, - bytes32 - r, + bytes32 r, bytes32 s ) ```