We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ff7e4 commit 5dd38b6Copy full SHA for 5dd38b6
src/Neo/Cryptography/ECC/ECPoint.cs
@@ -26,7 +26,7 @@ namespace Neo.Cryptography.ECC
26
public class ECPoint : IComparable<ECPoint>, IEquatable<ECPoint>, ISerializable, ISerializableSpan
27
{
28
internal ECFieldElement? X, Y;
29
- internal ECCurve Curve { get => field ??= ECCurve.Secp256r1; private init; }
+ internal ECCurve Curve { get => field ?? ECCurve.Secp256r1; private init; }
30
private byte[]? _compressedPoint, _uncompressedPoint;
31
32
/// <summary>
0 commit comments