Mute warnings from Substrate <-> Substrate runtime module and relay (#104)

* mute warnings from sub2sub module+relay

* cargo fmt --all
This commit is contained in:
Svyatoslav Nikolsky
2020-05-20 17:54:27 +03:00
committed by Bastian Köcher
parent 5bcae00f19
commit e16dd14e20
2 changed files with 6 additions and 0 deletions
+2
View File
@@ -47,6 +47,8 @@
//! || ||
//!```
// TODO: when (if) this module will be resurrected, remove this
#![allow(dead_code)]
// Ensure we're `no_std` when compiling for Wasm.
#![cfg_attr(not(feature = "std"), no_std)]
+4
View File
@@ -14,6 +14,10 @@
// You should have received a copy of the GNU General Public License
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
// TODO: when (if) this relay will be resurrected, remove this
#![allow(unused_variables)]
#![allow(dead_code)]
mod bridge;
mod error;
mod params;