Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
greymistcube committed Jul 22, 2021
1 parent d57ee60 commit 336dd7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libplanet.Tests/Blocks/BlockTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -558,12 +558,12 @@ public void OrderTxsForEvaluation()
0x45, 0xa2, 0x21, 0x87, 0xe2, 0xd8, 0x85, 0x0b, 0xb3, 0x57,
0x88, 0x69, 0x58, 0xbc, 0x3e, 0x85, 0x60, 0x92, 0x9c, 0xcc,
};
BlockHash blockHash = new BlockHash(preEvaluationHashBytes);
ImmutableArray<byte> preEvaluationHash = preEvaluationHashBytes.ToImmutableArray();

var orderedTxs = Block<RandomAction>.OrderTxsForEvaluation(
protocolVersion: protocolVersion,
txs: txs,
preEvaluationHash: blockHash).ToImmutableArray();
preEvaluationHash: preEvaluationHash).ToImmutableArray();

// Check signers are grouped together.
for (int i = 0; i < numSigners; i++)
Expand Down

0 comments on commit 336dd7e

Please sign in to comment.