Add missing license headers and CI check (#98)

* Add missing license headers and add CI check

* Remove log line

* Remove stale todos
This commit is contained in:
Andrew Jones
2020-04-30 22:26:22 +01:00
committed by GitHub
parent 6f27489378
commit 194c7bcf2f
24 changed files with 156 additions and 20 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
// Copyright 2019 Parity Technologies (UK) Ltd.
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
// This file is part of substrate-subxt.
//
// subxt is free software: you can redistribute it and/or modify
@@ -81,7 +81,7 @@ pub enum EventsError {
/// Event decoder.
pub struct EventsDecoder<T> {
metadata: Metadata, // todo: [AJ] borrow?
metadata: Metadata,
type_sizes: HashMap<String, usize>,
marker: PhantomData<fn() -> T>,
}