Skip to content

Commit

Permalink
fix precompile def
Browse files Browse the repository at this point in the history
  • Loading branch information
mycodecrafting committed Mar 10, 2024
1 parent 13326f6 commit ea30fb7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
46 changes: 23 additions & 23 deletions contracts/bindings/forma/precompile/compress/i_compress.abigen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions contracts/src/forma/precompile/ICompress.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pragma solidity ^0.8.4;

interface ICompress {

function inflate(bytes[] memory data) view external returns (bytes[] memory);
function inflate(bytes memory data) view external returns (bytes memory);

function deflate(bytes[] memory data) view external returns (bytes[] memory);
function deflate(bytes memory data) view external returns (bytes memory);

}

0 comments on commit ea30fb7

Please sign in to comment.