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:
Owain G. Ainsworth 2013-08-06 18:00:47 +01:00
parent 519e183151
commit 840708a3e7

View file

@ -147,12 +147,12 @@ out:
} }
if blkid != height { 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() blkSha, _ := block.Sha()
if *newSha != *blkSha { 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)
} }
} }