1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-11 22:37:11 +00:00

10 lines
120 B
Go
Raw Normal View History

2014-06-17 01:28:43 -07:00
package common
2014-06-05 11:04:56 -07:00
import (
"fmt"
)
func panicf(s string, args ...interface{}) {
panic(fmt.Sprintf(s, args...))
}