Skip to content

Commit

Permalink
Reduce missed change
Browse files Browse the repository at this point in the history
  • Loading branch information
asdacap committed Oct 21, 2024
1 parent 933f068 commit d29eb72
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 28 deletions.
1 change: 0 additions & 1 deletion src/Nethermind/Nethermind.Api/NethermindApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,5 @@ public ISealEngine SealEngine
public CompositePruningTrigger PruningTrigger { get; } = new();
public IProcessExitSource? ProcessExit { get; set; }
public CompositeTxGossipPolicy TxGossipPolicy { get; } = new();
public IEraStore? EraStore { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public string? PivotHash
public bool? SnapServingEnabled { get; set; } = null;
public int MultiSyncModeSelectorLoopTimerMs { get; set; } = 1000;
public bool TrieHealing { get; set; } = true;
public string ImportDirectory { get; set; }

public override string ToString()
{
Expand Down
25 changes: 0 additions & 25 deletions src/Nethermind/Nethermind.Serialization.Rlp/RlpStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@ public void Encode(Block value)
_blockDecoder.Encode(this, value);
}

public void Encode(BlockBody value)
{
_blockBodyDecoder.Encode(this, value);
}

public void Encode(BlockHeader value)
{
_headerDecoder.Encode(this, value);
Expand All @@ -94,26 +89,6 @@ public void Encode(Transaction value, RlpBehaviors rlpBehaviors = RlpBehaviors.N
{
_txDecoder.Encode(this, value, rlpBehaviors);
}
public void Encode(TxReceipt?[]? values, RlpBehaviors rlpBehaviors = RlpBehaviors.None)
{
if (values is null)
{
EncodeNullObject();
return;
}
StartSequence(_receiptDecoder.GetContentLength(values, rlpBehaviors));
for (int i = 0; i < values.Length; i++)
{
if (values[i] is null)
EncodeNullObject();
else
_receiptDecoder.Encode(this, values[i], rlpBehaviors);
}
}
public void Encode(TxReceipt value)
{
_receiptDecoder.Encode(this, value);
}

public void Encode(Withdrawal value) => _withdrawalDecoder.Encode(this, value);
public void Encode(ConsensusRequest value) => _requestsDecoder.Encode(this, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

<ItemGroup>
<ProjectReference Include="..\Nethermind.Consensus\Nethermind.Consensus.csproj" />
<ProjectReference Include="..\Nethermind.Era1\Nethermind.Era1.csproj" />
<ProjectReference Include="..\Nethermind.Logging\Nethermind.Logging.csproj" />
<ProjectReference Include="..\Nethermind.Network.Contract\Nethermind.Network.Contract.csproj" />
<ProjectReference Include="..\Nethermind.Trie\Nethermind.Trie.csproj" />
Expand Down

0 comments on commit d29eb72

Please sign in to comment.