Skip to content

Commit a21df45

Browse files
committed
fix(entropy-explorer) Fix cast command
1 parent 2918672 commit a21df45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/entropy-explorer/src/components/Home/request-drawer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ const RequestDrawerBody = ({
249249
};
250250

251251
const CallbackErrorInfo = ({ request }: { request: CallbackErrorRequest }) => {
252-
const retryCommand = `cast send ${request.chain.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${request.provider} ${request.sequenceNumber.toString()} ${request.userContribution} ${request.randomNumber} -r ${request.chain.rpc} --private-key <YOUR_PRIVATE_KEY>`;
252+
const retryCommand = `cast send ${request.chain.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${request.provider} ${request.sequenceNumber.toString()} ${request.userContribution} ${request.providerContribution} -r ${request.chain.rpc} --private-key <YOUR_PRIVATE_KEY>`;
253253

254254
return (
255255
<>

0 commit comments

Comments
 (0)