Browse Source

Tmp fix disabling bytes 32 length

temp-fix
arnaucube 2 years ago
parent
commit
07077d895d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      blindsecp256k1.go

+ 3
- 3
blindsecp256k1.go

@ -196,9 +196,9 @@ func NewRequestParameters() (*big.Int, *Point, error) {
func checkBigIntSize(b *big.Int) error {
// check b.Bytes()==32, as go returns big-endian representation of the
// bigint, so if length is not 32 we have a smaller value than expected
if len(b.Bytes()) != 32 { //nolint:gomnd
return fmt.Errorf("invalid length, need 32 bytes")
}
// if len(b.Bytes()) != 32 { //nolint:gomnd
// return fmt.Errorf("invalid length, need 32 bytes")
// }
return nil
}

Loading…
Cancel
Save