mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-03 10:46:42 +01:00
fixed toArray def
This commit is contained in:
parent
9aa0c7bc1c
commit
934e89e662
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ case class SipHashKey(bytes: ByteVector) {
|
|||
bytes.size == 16,
|
||||
"Can only use a key length of 16 bytes, got: " + bytes.size)
|
||||
|
||||
def toArray: Array[bytes] {
|
||||
def toArray: Array[Byte] = {
|
||||
bytes.toArray
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue