Skip to content
Merged
Show file tree
Hide file tree
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: 1 addition & 3 deletions .github/workflows/seismic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ jobs:
- name: Clone seismic-solidity repo
run: |
TEMP_DIR=$(mktemp -d)
# Temporarily checking out the test--new-storage-opcode-semantics branch that fixes storage opcode semantic tests.
# TODO(samlaf): switch back to seismic (default) branch after we merge https://github.com/SeismicSystems/seismic-solidity/pull/130
git clone -b test--new-storage-opcode-semantics https://github.com/SeismicSystems/seismic-solidity.git "$TEMP_DIR/seismic-solidity"
git clone https://github.com/SeismicSystems/seismic-solidity.git "$TEMP_DIR/seismic-solidity"
echo "SEISMIC_SOLIDITY_PATH=$TEMP_DIR/seismic-solidity" >> $GITHUB_ENV
echo "seismic-solidity cloned to: $TEMP_DIR/seismic-solidity"
- name: Install latest ssolc release
Expand Down
2 changes: 1 addition & 1 deletion crates/seismic/src/instructions/confidential_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ use revm::primitives::hardfork::SpecId::*;
use revm::{
context::host::LoadError,
interpreter::{
_count, gas,
gas::{
CALL_STIPEND, COLD_SLOAD_COST_ADDITIONAL, CSTORE_FIXED_GAS, ISTANBUL_SLOAD_GAS,
WARM_STORAGE_READ_COST,
},
interpreter_types::{InputsTr, InterpreterTypes, RuntimeFlag, StackTr},
popn, popn_top, require_non_staticcall, Instruction, InstructionContext, InstructionResult,
_count, gas,
},
};

Expand Down
Loading