signature agnostic transaction
This commit is contained in:
parent
a9099e8569
commit
421d2d1174
@ -64,3 +64,8 @@ impl Encodable for BlockHeader {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
fn encoding_and_decoding() {
|
||||
}
|
||||
}
|
||||
|
@ -77,6 +77,7 @@ extern crate ethcore_util as util;
|
||||
extern crate evmjit;
|
||||
|
||||
pub mod blockheader;
|
||||
pub mod transaction;
|
||||
|
||||
#[test]
|
||||
fn it_works() {
|
||||
|
42
src/transaction.rs
Normal file
42
src/transaction.rs
Normal file
@ -0,0 +1,42 @@
|
||||
use util::hash::*;
|
||||
use util::uint::*;
|
||||
use util::rlp::*;
|
||||
|
||||
pub struct Transaction {
|
||||
nonce: U256,
|
||||
gas_price: U256,
|
||||
gas: U256,
|
||||
receive_address: Option<Address>,
|
||||
value: U256,
|
||||
data: Vec<u8>,
|
||||
}
|
||||
|
||||
impl Encodable for Transaction {
|
||||
fn encode<E>(&self, encoder: &mut E) where E: Encoder {
|
||||
encoder.emit_list(| e | {
|
||||
self.nonce.encode(e);
|
||||
self.gas_price.encode(e);
|
||||
self.gas.encode(e);
|
||||
self.receive_address.encode(e);
|
||||
self.value.encode(e);
|
||||
self.data.encode(e);
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl Decodable for Transaction {
|
||||
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder {
|
||||
decoder.read_list(| d | {
|
||||
let transaction = Transaction {
|
||||
nonce: try!(Decodable::decode(&d[0])),
|
||||
gas_price: try!(Decodable::decode(&d[1])),
|
||||
gas: try!(Decodable::decode(&d[2])),
|
||||
receive_address: try!(Decodable::decode(&d[3])),
|
||||
value: try!(Decodable::decode(&d[4])),
|
||||
data: try!(Decodable::decode(&d[5])),
|
||||
};
|
||||
Ok(transaction)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user