Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Add constructor code #57

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion contracts/precompiles/Keccak256.yul
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
* @dev It accepts the data to be hashed in the calldata, propagate it to the zkEVM built-in circuit precompile via `precompileCall` and burn .
*/
object "Keccak256" {
code { }
code {
return(0, 0)
}
object "Keccak256_deployed" {
code {
////////////////////////////////////////////////////////////////
Expand Down
Loading