Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

v2.6.3-beta #11040

Merged
merged 25 commits into from
Sep 12, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a8920c8
Better error message for rpc gas price errors (#10931)
seunlanlege Aug 15, 2019
baf3e54
Verify transaction against its block during import (#10954)
grbIzl Aug 15, 2019
7b5ad38
[blooms-db] Fix benchmarks (#10974)
dvdplm Aug 15, 2019
4d6c80c
manual publish jobs for releases, no changes for nightlies (#10977)
TriplEight Aug 16, 2019
5d2d90a
EIP 2028: transaction gas lowered from 68 to 16 (#10987)
dvdplm Aug 23, 2019
1821ebc
xDai chain support and nodes list update (#10989)
phahulin Aug 29, 2019
cad522a
Fix deadlock in `network-devp2p` (#11013)
AtkinsChang Sep 2, 2019
af5b999
Edit publish-onchain.sh to use https (#11016)
s3krit Sep 3, 2019
897b506
EIP 2028: transaction gas lowered from 68 to 16 (#10987)
dvdplm Aug 23, 2019
a5da0ec
Fix fork choice (#10837)
ngotchac Jul 8, 2019
1ed7d00
ethcore-builtin (#10850)
debris Jul 7, 2019
d71b24b
EIP 1108: Reduce alt_bn128 precompile gas costs (#11008)
niklasad1 Sep 2, 2019
ffc2aa5
[trace] introduce trace failed to Ext (#11019)
ordian Sep 5, 2019
a2dfeed
[trace] introduce trace failed to Ext (#11019)
ordian Sep 5, 2019
aa75bb9
Merge branch 'v2.6.3-beta' of github.com:paritytech/parity-ethereum i…
s3krit Sep 11, 2019
cfae6b9
Add blake2_f precompile (#11017)
dvdplm Sep 9, 2019
fbca2d9
Merge branch 'v2.6.3-beta' of github.com:paritytech/parity-ethereum i…
s3krit Sep 11, 2019
453b6a0
Manual port of https://github.com/paritytech/parity-ethereum/pull/10983
dvdplm Sep 11, 2019
c900be0
Merge branch 'v2.6.3-beta' of github.com:paritytech/parity-ethereum i…
s3krit Sep 11, 2019
4eeac61
Fix compilation on recent nightlies (#10991)
dvdplm Aug 27, 2019
a3e1847
cli: update usage and version headers (#10924)
soc1c Sep 5, 2019
636ffb1
Manual port of #10995
ordian Sep 12, 2019
9051d19
Merge branch 'v2.6.3-beta' of github.com:paritytech/parity-ethereum i…
s3krit Sep 12, 2019
a30cc89
add more tx tests (#11038)
ordian Sep 12, 2019
83db62d
update version (v2.6.3-beta)
s3krit Sep 12, 2019
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
Prev Previous commit
Next Next commit
EIP 2028: transaction gas lowered from 68 to 16 (#10987)
  • Loading branch information
dvdplm committed Sep 11, 2019
commit 897b5068e1212107f4bb4726fb6c88f5b3eff742
9 changes: 9 additions & 0 deletions ethcore/src/spec/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ pub struct CommonParams {
pub eip1283_disable_transition: BlockNumber,
/// Number of first block where EIP-1014 rules begin.
pub eip1014_transition: BlockNumber,
/// Number of first block where EIP-2028 rules begin.
pub eip2028_transition: BlockNumber,
/// Number of first block where dust cleanup rules (EIP-168 and EIP169) begin.
pub dust_protection_transition: BlockNumber,
/// Nonce cap increase per block. Nonce cap is only checked if dust protection is enabled.
Expand Down Expand Up @@ -190,6 +192,9 @@ impl CommonParams {
schedule.have_bitwise_shifting = block_number >= self.eip145_transition;
schedule.have_extcodehash = block_number >= self.eip1052_transition;
schedule.eip1283 = block_number >= self.eip1283_transition && !(block_number >= self.eip1283_disable_transition);
if block_number >= self.eip2028_transition {
schedule.tx_data_non_zero_gas = 16;
}
if block_number >= self.eip210_transition {
schedule.blockhash_gas = 800;
}
Expand Down Expand Up @@ -308,6 +313,10 @@ impl From<ethjson::spec::Params> for CommonParams {
BlockNumber::max_value,
Into::into,
),
eip2028_transition: p.eip2028_transition.map_or_else(
BlockNumber::max_value,
Into::into,
),
dust_protection_transition: p.dust_protection_transition.map_or_else(
BlockNumber::max_value,
Into::into,
Expand Down