// Copyright 2015-2020 Parity Technologies (UK) Ltd. // This file is part of OpenEthereum. // OpenEthereum is free software: you can redistribute it and/or modify // 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. // OpenEthereum is distributed in the hope that it will be useful, // 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 // along with OpenEthereum. If not, see . //! State test transaction deserialization. use bytes::Bytes; use hash::{Address, H256}; use maybe::MaybeEmpty; use uint::Uint; /// State test transaction deserialization. #[derive(Debug, PartialEq, Deserialize)] #[serde(rename_all = "camelCase")] pub struct Transaction { /// Transaction data. pub data: Bytes, /// Gas limit. pub gas_limit: Uint, /// Gas price. pub gas_price: Uint, /// Nonce. pub nonce: Uint, /// Secret key. #[serde(rename = "secretKey")] pub secret: Option, /// To. pub to: MaybeEmpty
, /// Value. pub value: Uint, } #[cfg(test)] mod tests { use serde_json; use state::Transaction; #[test] fn transaction_deserialization() { let s = r#"{ "data" : "", "accessLists": null, "gasLimit" : "0x2dc6c0", "gasPrice" : "0x01", "nonce" : "0x00", "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", "to" : "1000000000000000000000000000000000000000", "value" : "0x00" }"#; let _deserialized: Transaction = serde_json::from_str(s).unwrap(); // TODO: validate all fields } }