Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ak88 committed Sep 12, 2023
1 parent ce52a7e commit 1a3c7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Serialization.Rlp/TxDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private void EncodeShardBlobPayloadWithoutPayload(T item, RlpStream stream, RlpB
stream.Encode(item.Value);
stream.Encode(item.Data);
_accessListDecoder.Encode(stream, item.AccessList, rlpBehaviors);
if(item.MaxFeePerDataGas.Value == 42_000_000_000)
if (item.MaxFeePerDataGas.Value == 42_000_000_000)
{
byte[] brokenDataGas = new byte[33];
Array.Fill(brokenDataGas, (byte)0xff);
Expand Down

0 comments on commit 1a3c7b4

Please sign in to comment.