2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-03-15 18:17:48 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-03-15 18:17:48 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-03-15 18:17:48 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-15 18:17:48 +01:00
|
|
|
|
|
|
|
//! Blockchain test transaction deserialization.
|
|
|
|
|
|
|
|
use bytes::Bytes;
|
2021-01-28 17:23:01 +01:00
|
|
|
use ethereum_types::{H160, H256};
|
2020-08-05 06:08:03 +02:00
|
|
|
use uint::Uint;
|
2016-03-15 18:17:48 +01:00
|
|
|
|
|
|
|
/// Blockchain test transaction deserialization.
|
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2016-03-15 18:17:48 +01:00
|
|
|
pub struct Transaction {
|
2021-01-28 17:23:01 +01:00
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub transaction_type: Option<Uint>,
|
|
|
|
pub data: Bytes,
|
|
|
|
pub gas_limit: Uint,
|
|
|
|
pub gas_price: Uint,
|
|
|
|
pub nonce: Uint,
|
|
|
|
pub r: Uint,
|
|
|
|
pub s: Uint,
|
|
|
|
pub v: Uint,
|
|
|
|
pub value: Uint,
|
|
|
|
pub chain_id: Option<Uint>,
|
2021-02-08 14:55:03 +01:00
|
|
|
pub access_list: Option<AccessList>,
|
2021-01-28 17:23:01 +01:00
|
|
|
pub hash: Option<H256>,
|
|
|
|
}
|
|
|
|
|
2021-02-08 14:55:03 +01:00
|
|
|
pub type AccessList = Vec<AccessListItem>;
|
|
|
|
|
2021-01-28 17:23:01 +01:00
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
2021-02-08 14:55:03 +01:00
|
|
|
pub struct AccessListItem {
|
2021-01-28 17:23:01 +01:00
|
|
|
pub address: H160,
|
|
|
|
pub storage_keys: Vec<H256>,
|
2016-03-15 18:17:48 +01:00
|
|
|
}
|