Skip to content

Commit

Permalink
πŸ‘·πŸ»β€β™‚οΈ Forward msg.value to EIP7412Implementer
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredBorders committed Nov 27, 2023
1 parent fb55860 commit 959d1fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/EIP7412.sol
Expand Up @@ -18,6 +18,8 @@ contract EIP7412 {
/// @custom:auditor this allows arbitrary calls
/// to be made to any contract. This may be a security risk.
/// Please review the contract carefully.
IERC7412(EIP7412Implementer).fulfillOracleQuery(signedOffchainData);
IERC7412(EIP7412Implementer).fulfillOracleQuery{value: msg.value}(
signedOffchainData
);
}
}

0 comments on commit 959d1fb

Please sign in to comment.