Skip to content

Commit

Permalink
revert OrCondition.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
cschuchardt88 committed Nov 25, 2024
1 parent d761585 commit 9ecd77f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/Neo/Network/P2P/Payloads/Conditions/OrCondition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,7 @@ public class OrCondition : WitnessCondition, IEquatable<OrCondition>
/// </summary>
public WitnessCondition[] Expressions;

public override int Size
{
get
{
return base.Size + Expressions.GetVarSize();
}
}
public override int Size => base.Size + Expressions.GetVarSize();

public override WitnessConditionType Type => WitnessConditionType.Or;

Expand Down

0 comments on commit 9ecd77f

Please sign in to comment.