fix formatting of panicf function

This commit is contained in:
Anton Kaliaev 2017-11-22 19:38:04 -06:00
parent 0176a834d1
commit 03fafeec2f
No known key found for this signature in database
GPG Key ID: 7B6881D965918214

View File

@ -99,5 +99,5 @@ func deliverTx(client abcicli.Client, txBytes []byte, codeExp types.CodeType, da
}*/
func panicf(format string, a ...interface{}) {
panic(fmt.Sprintf(format, a))
panic(fmt.Sprintf(format, a...))
}