diff --git a/zebra-consensus/src/block/subsidy/funding_streams/tests.rs b/zebra-consensus/src/block/subsidy/funding_streams/tests.rs index 8c5fa2de7b0..96d881f70f2 100644 --- a/zebra-consensus/src/block/subsidy/funding_streams/tests.rs +++ b/zebra-consensus/src/block/subsidy/funding_streams/tests.rs @@ -76,14 +76,14 @@ fn test_funding_stream_values() -> Result<(), Report> { recipients: Some( POST_NU6_FUNDING_STREAMS_TESTNET .recipients() - .into_iter() + .iter() .map(|(&receiver, recipient)| ConfiguredFundingStreamRecipient { receiver, numerator: recipient.numerator(), addresses: Some( recipient .addresses() - .into_iter() + .iter() .map(|addr| addr.to_string()) .collect(), ),