Skip to content

Commit

Permalink
make default derivations release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Sep 4, 2024
1 parent 28a5816 commit fb68a5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evm-assigner/lib/assigner/evmone/instructions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
// SPDX-License-Identifier: Apache-2.0
#pragma once

#include <iostream>
#include <algorithm>
#include "eof.hpp"
#include "execution_state.hpp"
#include "instructions_traits.hpp"
#include "instructions_xmacro.hpp"
#include <ethash/keccak.hpp>
#include <iostream>
#include <algorithm>

namespace evmone
{
Expand Down
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
crypto3 = (pkgs.callPackage ./crypto3/crypto3.nix { });
crypto3-tests = (pkgs.callPackage ./crypto3/crypto3.nix {
runTests = true;
enableDebug = false;
});
crypto3-debug-tests = (pkgs.callPackage ./crypto3/crypto3.nix {
enableDebug = true;
Expand All @@ -36,6 +37,7 @@
});
evm-assigner-tests = (pkgs.callPackage ./evm-assigner/evm-assigner.nix {
runTests = true;
enableDebug = false;
crypto3 = crypto3;
});
evm-assigner-debug-tests = (pkgs.callPackage ./evm-assigner/evm-assigner.nix {
Expand Down

0 comments on commit fb68a5c

Please sign in to comment.