mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-29 18:27:25 +00:00
3402f169a7
* Introduce basic skeleton for Polkador runtime. * Clean up the runtime skeleton. * Make initial runtime skeleton compile. * Compile polkadot-runtime both for Wasm ad native, allowing for testing and direct usage. * More fleshing out on runtime. * Update native support. * Fix warning. * Update gitignore * Update path. * Fix path. * Remove accidentally committed files. * Add wasm binaries. * Fix test. * Native storage support API. * Add environmental module * Add native environment to make native source-code compatible with wasm. Also tests. * Finish up & polish environment stuff. * Avoid using reentrancy issues. * Add some docs and a test. * Remove unneeded function. * Documentation * Tweak docs * Remove TODOs. * Balance transfers + util methods. * Rejig tests and ensure authorities are addressed consistently. * Add marshaller for xfer function * Transaction dispatch test. * Minor fix. * Add test for ser/de transaction. * Add ser/de for header. * Add tests for header ser/de * Introduce basic block decoding/execution framework. * Introduce block decoding/execution framework (p2) * Big refactor. * Split out joiner. * Hide away support modules. * Fix up wasm runtime. * use externalities for chain_id * Clean up (Test)Externalities. * Repot and introduce keccak-256 external. * Signing with crypto. * fix unsafety hole in environmental using function * Introduce Ed25519 crypto. * Repotting. * Add ed25519_verify external. * Introduce Ed25519 verify as an external. * fix unsafety hole around unwinding * Compile fixes. * use new environmental API * Tests for ed25519 verify. * Polish * Introduce UncheckedTransaction & test. * Implement basic block and tx processing * Introduce static hex and valid signature for block test. * Repot session. * comments. * Refactor and timestamp test * Remove fluff * Remove fluff. * Staking eras and tests. * Implement sessions. * Polish * Test sessions. * Introduce better hashing. - Blake2 for secure hashing - XX for fast hashing * Fix tests. * Introduce staking. * Tests for simple staking system. * Build fix for wasm. * Fix tests. * Repotting and docs. * Docs and licence. * Documentation. * Remove superfluous code. * Remove dummy key. * Remove other superfluous file. * Optimise with swap_remove
98 lines
3.7 KiB
Rust
98 lines
3.7 KiB
Rust
// Copyright 2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! A fixed hash type.
|
|
|
|
use serde::{Serialize, Serializer, Deserialize, Deserializer};
|
|
|
|
use bytes;
|
|
|
|
macro_rules! impl_serde {
|
|
($name: ident, $len: expr) => {
|
|
impl Serialize for $name {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
|
|
bytes::serialize(&self.0, serializer)
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for $name {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer<'de> {
|
|
bytes::deserialize_check_len(deserializer, bytes::ExpectedLen::Exact($len))
|
|
.map(|x| (&*x).into())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl_hash!(H160, 20);
|
|
impl_serde!(H160, 20);
|
|
impl_hash!(H256, 32);
|
|
impl_serde!(H256, 32);
|
|
impl_hash!(H512, 64);
|
|
impl_serde!(H512, 64);
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use polkadot_serializer as ser;
|
|
|
|
#[test]
|
|
fn test_h160() {
|
|
let tests = vec![
|
|
(H160::from(0), "0x0000000000000000000000000000000000000000"),
|
|
(H160::from(2), "0x0000000000000000000000000000000000000002"),
|
|
(H160::from(15), "0x000000000000000000000000000000000000000f"),
|
|
(H160::from(16), "0x0000000000000000000000000000000000000010"),
|
|
(H160::from(1_000), "0x00000000000000000000000000000000000003e8"),
|
|
(H160::from(100_000), "0x00000000000000000000000000000000000186a0"),
|
|
(H160::from(u64::max_value()), "0x000000000000000000000000ffffffffffffffff"),
|
|
];
|
|
|
|
for (number, expected) in tests {
|
|
assert_eq!(format!("{:?}", expected), ser::to_string_pretty(&number));
|
|
assert_eq!(number, ser::from_str(&format!("{:?}", expected)).unwrap());
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_h256() {
|
|
let tests = vec![
|
|
(H256::from(0), "0x0000000000000000000000000000000000000000000000000000000000000000"),
|
|
(H256::from(2), "0x0000000000000000000000000000000000000000000000000000000000000002"),
|
|
(H256::from(15), "0x000000000000000000000000000000000000000000000000000000000000000f"),
|
|
(H256::from(16), "0x0000000000000000000000000000000000000000000000000000000000000010"),
|
|
(H256::from(1_000), "0x00000000000000000000000000000000000000000000000000000000000003e8"),
|
|
(H256::from(100_000), "0x00000000000000000000000000000000000000000000000000000000000186a0"),
|
|
(H256::from(u64::max_value()), "0x000000000000000000000000000000000000000000000000ffffffffffffffff"),
|
|
];
|
|
|
|
for (number, expected) in tests {
|
|
assert_eq!(format!("{:?}", expected), ser::to_string_pretty(&number));
|
|
assert_eq!(number, ser::from_str(&format!("{:?}", expected)).unwrap());
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_invalid() {
|
|
assert!(ser::from_str::<H256>("\"0x000000000000000000000000000000000000000000000000000000000000000\"").unwrap_err().is_data());
|
|
assert!(ser::from_str::<H256>("\"0x000000000000000000000000000000000000000000000000000000000000000g\"").unwrap_err().is_data());
|
|
assert!(ser::from_str::<H256>("\"0x00000000000000000000000000000000000000000000000000000000000000000\"").unwrap_err().is_data());
|
|
assert!(ser::from_str::<H256>("\"\"").unwrap_err().is_data());
|
|
assert!(ser::from_str::<H256>("\"0\"").unwrap_err().is_data());
|
|
assert!(ser::from_str::<H256>("\"10\"").unwrap_err().is_data());
|
|
}
|
|
}
|