From 1315098c15f44fcdac597701208a7a0635cbf1ea Mon Sep 17 00:00:00 2001 From: sean Date: Sun, 5 Feb 2023 17:56:03 -0500 Subject: [PATCH] variable list from -> new --- beacon_node/execution_layer/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/execution_layer/src/lib.rs b/beacon_node/execution_layer/src/lib.rs index fa5f26445..902b5beec 100644 --- a/beacon_node/execution_layer/src/lib.rs +++ b/beacon_node/execution_layer/src/lib.rs @@ -2201,7 +2201,7 @@ fn ethers_tx_to_bytes( } else { transaction.rlp().to_vec() }; - Ok(VariableList::from(tx)) + VariableList::new(tx).map_err(Into::into) } #[cfg(test)]