diff --git a/pkg/core/native/crypto.go b/pkg/core/native/crypto.go index f50a71201c..d0d830f882 100644 --- a/pkg/core/native/crypto.go +++ b/pkg/core/native/crypto.go @@ -230,9 +230,8 @@ func scalarFromBytes(bytes []byte, neg bool) (*fr.Element, error) { return nil, fmt.Errorf("invalid multiplier: 32-bytes scalar is expected, got %d", len(bytes)) } // The input bytes are in the LE form, so we can't use fr.Element.SetBytesCanonical as far - // as it accepts BE. - // TODO: ensure that LE is really used in the C# node. More common way is to use BE form, and these - // lines of code are here only because that's the way how C# example works (https://github.com/neo-project/neo/issues/2647#issuecomment-1129849870). + // as it accepts BE. Confirmed by https://github.com/neo-project/neo/issues/2647#issuecomment-1129849870 + // and by https://github.com/nspcc-dev/neo-go/pull/3043#issuecomment-1733424840. v, err := fr.LittleEndian.Element((*[fr.Bytes]byte)(bytes)) if err != nil { return nil, fmt.Errorf("invalid multiplier: failed to decode scalar: %w", err)