|
1 | | -// Copyright 2015-2018 Parity Technologies (UK) Ltd. |
2 | | -// This file is part of Parity. |
| 1 | +// Copyright 2015-2019 Parity Technologies (UK) Ltd. |
| 2 | +// This file is part of Parity Ethereum. |
3 | 3 |
|
4 | | -// Parity is free software: you can redistribute it and/or modify |
| 4 | +// Parity Ethereum is free software: you can redistribute it and/or modify |
5 | 5 | // it under the terms of the GNU General Public License as published by |
6 | 6 | // the Free Software Foundation, either version 3 of the License, or |
7 | 7 | // (at your option) any later version. |
8 | 8 |
|
9 | | -// Parity is distributed in the hope that it will be useful, |
| 9 | +// Parity Ethereum is distributed in the hope that it will be useful, |
10 | 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | 12 | // GNU General Public License for more details. |
13 | 13 |
|
14 | 14 | // You should have received a copy of the GNU General Public License |
15 | | -// along with Parity. If not, see <http://www.gnu.org/licenses/>. |
| 15 | +// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 |
|
17 | 17 | //! Spec params deserialization. |
18 | 18 |
|
@@ -112,6 +112,10 @@ pub struct Params { |
112 | 112 | /// See `CommonParams` docs. |
113 | 113 | #[serde(rename="eip1283Transition")] |
114 | 114 | pub eip1283_transition: Option<Uint>, |
| 115 | + /// See `CommonParams` docs. |
| 116 | + #[serde(rename="eip1283DisableTransition")] |
| 117 | + pub eip1283_disable_transition: Option<Uint>, |
| 118 | + /// See `CommonParams` docs. |
115 | 119 | #[serde(rename="eip1014Transition")] |
116 | 120 | pub eip1014_transition: Option<Uint>, |
117 | 121 | /// See `CommonParams` docs. |
@@ -210,3 +214,4 @@ mod tests { |
210 | 214 | let _deserialized: Params = serde_json::from_str(s).unwrap(); |
211 | 215 | } |
212 | 216 | } |
| 217 | + |
0 commit comments