Fix up some format strings to appease go vet.
Extra argument present when no format directive for it (and not needed, either).
This commit is contained in:
parent
519e183151
commit
840708a3e7
1 changed files with 2 additions and 2 deletions
|
@ -147,12 +147,12 @@ out:
|
|||
}
|
||||
|
||||
if blkid != height {
|
||||
t.Errorf("height doe not match latest block height %v %v", blkid, height, err)
|
||||
t.Errorf("height does not match latest block height %v %v", blkid, height)
|
||||
}
|
||||
|
||||
blkSha, _ := block.Sha()
|
||||
if *newSha != *blkSha {
|
||||
t.Errorf("Newest block sha does not match freshly inserted one %v %v ", newSha, blkSha, err)
|
||||
t.Errorf("Newest block sha does not match freshly inserted one %v %v ", newSha, blkSha)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue