core: fix (*HeaderHashList).Write comment
This commit is contained in:
parent
2354af463a
commit
34156ef78d
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ func (l *HeaderHashList) Last() util.Uint256 {
|
||||||
return l.hashes[l.Len()-1]
|
return l.hashes[l.Len()-1]
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteTo writes n underlying hashes to the given BinWriter
|
// Write writes n underlying hashes to the given BinWriter
|
||||||
// starting from start.
|
// starting from start.
|
||||||
func (l *HeaderHashList) Write(bw *io.BinWriter, start, n int) error {
|
func (l *HeaderHashList) Write(bw *io.BinWriter, start, n int) error {
|
||||||
bw.WriteArray(l.hashes[start : start+n])
|
bw.WriteArray(l.hashes[start : start+n])
|
||||||
|
|
Loading…
Reference in a new issue