Skip to content

Commit

Permalink
Rename huff contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
Agusx1211 committed Feb 11, 2024
1 parent 02c3c16 commit bd982c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/compressor.huff → src/decompressor.huff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/// @title L2 Compressor
/// @title L2 Decompressor
/// @notice SPDX-License-Identifier: MIT
/// @author Agustin Aguilar <@Agusx1211>

#include "./vm.huff"
#include "./state_machine.huff"

#define jumptable SELECTORS_TABLE {
execute_transaction // 0x00
Expand Down
2 changes: 1 addition & 1 deletion src/vm.huff → src/state_machine.huff
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// @title L2 Compressor VM
/// @title L2 Compressor state machine
/// @notice SPDX-License-Identifier: MIT
/// @author Agustin Aguilar <@Agusx1211>

Expand Down
2 changes: 1 addition & 1 deletion test/flags.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ contract FlagsTest is Test {
address public compressor;

function setUp() public {
compressor = HuffDeployer.deploy("compressor");
compressor = HuffDeployer.deploy("decompressor");
}

function decode(bytes memory _data) internal returns (bytes memory) {
Expand Down
2 changes: 1 addition & 1 deletion test/flags_no_go.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract FlagsTestNoGo is Test {
address public compressor;

function setUp() public {
compressor = HuffDeployer.deploy("compressor");
compressor = HuffDeployer.deploy("decompressor");
}

function decode(bytes memory _data) internal returns (bytes memory) {
Expand Down

0 comments on commit bd982c7

Please sign in to comment.