diff --git a/test/Libplanet.Tests/TestUtils.cs b/test/Libplanet.Tests/TestUtils.cs index 2d582511f26..7cb6fe6c0ee 100644 --- a/test/Libplanet.Tests/TestUtils.cs +++ b/test/Libplanet.Tests/TestUtils.cs @@ -422,19 +422,18 @@ public static PreEvaluationBlock ProposeGenesis( var txs = transactions?.ToList() ?? new List(); long nonce = 0; validatorSet = validatorSet ?? ValidatorSet; - txs.AddRange( - validatorSet.Validators.Select( - validator => Transaction.Create( - nonce++, - GenesisProposer, - null, - actions: new IAction[] - { - new Initialize( - validatorSet: validatorSet, - states: ImmutableDictionary.Create()), - }.Select(x => x.PlainValue), - timestamp: DateTimeOffset.MinValue))); + txs.Add( + Transaction.Create( + nonce++, + GenesisProposer, + null, + actions: new IAction[] + { + new Initialize( + validatorSet: validatorSet, + states: ImmutableDictionary.Create()), + }.Select(x => x.PlainValue), + timestamp: DateTimeOffset.MinValue)); txs = txs.OrderBy(tx => tx.Id).ToList(); var content = new BlockContent(