mirror of https://github.com/status-im/op-geth.git
Merge pull request #19992 from karalabe/fix-blake2b-386-2
crypto/blake2b: fix 386, round 2
This commit is contained in:
commit
ac23073619
|
@ -6,6 +6,6 @@
|
|||
|
||||
package blake2b
|
||||
|
||||
func f(h *[8]uint64, m [16]uint64, c0, c1 uint64, flag uint64, rounds int) {
|
||||
func f(h *[8]uint64, m *[16]uint64, c0, c1 uint64, flag uint64, rounds uint64) {
|
||||
fGeneric(h, m, c0, c1, flag, rounds)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue