mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
fix unused variable v
This commit is contained in:
parent
3bc0336323
commit
13faca1b6f
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ func newTestFullNode(v []byte) []interface{} {
|
|||
k := bytes.Repeat([]byte{byte(i + 1)}, 32)
|
||||
fullNodeData = append(fullNodeData, k)
|
||||
}
|
||||
fullNodeData = append(fullNodeData, []byte("value1"))
|
||||
fullNodeData = append(fullNodeData, v)
|
||||
return fullNodeData
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue