From 3dfdfc95ac84aac141ee24ddc89c8f35b53c87e7 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 14 Mar 2019 17:53:13 +1100 Subject: [PATCH] Fix test_utils macro definition It needed to be defined before it was used in an module. --- eth2/types/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth2/types/src/lib.rs b/eth2/types/src/lib.rs index 4d13fd16c..7b1d84837 100644 --- a/eth2/types/src/lib.rs +++ b/eth2/types/src/lib.rs @@ -2,6 +2,7 @@ #[macro_use] pub mod test_utils; + pub mod attestation; pub mod attestation_data; pub mod attestation_data_and_custody_bit; @@ -24,7 +25,6 @@ pub mod proposer_slashing; pub mod readers; pub mod shard_reassignment_record; pub mod slashable_attestation; -pub mod test_utils; pub mod transfer; pub mod voluntary_exit; #[macro_use]