Skip to content

Commit

Permalink
Upgrade OpenEthereum from 2.6.2 to 2.6.3. (#3506)
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Nov 2, 2020
1 parent e52bb03 commit 3803233
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions runtime/near-evm-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ keccak-hash = "0.2.0"
ripemd160 = "0.9.0"
libsecp256k1 = "0.3.5"

evm = { git = "https://github.com/openethereum/openethereum", rev = "v2.6.2" }
vm = { git = "https://github.com/openethereum/openethereum", rev = "v2.6.2" }
evm = { git = "https://github.com/openethereum/openethereum", rev = "v2.6.3" }
vm = { git = "https://github.com/openethereum/openethereum", rev = "v2.6.3" }
bn = { git = "https://github.com/paritytech/bn", default-features = false }
parity-bytes = "0.1.0"
ethereum-types = "0.6.0"
Expand Down
4 changes: 4 additions & 0 deletions runtime/near-evm-runner/src/near_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ impl<'a> NearExt<'a> {
}

impl<'a> vm::Ext for NearExt<'a> {
/// EIP-1344: Returns the current chain's EIP-155 unique identifier.
/// See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1344.md
fn chain_id(&self) -> u64 { todo!() }

/// Returns the storage value for a given key if reversion happens on the current transaction.
fn initial_storage_at(&self, key: &H256) -> EvmResult<H256> {
let raw_val = self
Expand Down

0 comments on commit 3803233

Please sign in to comment.