tendermint/common/panic.go

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"
)
2014-06-18 20:48:07 -07:00
func Panicf(s string, args ...interface{}) {
2014-06-05 11:04:56 -07:00
panic(fmt.Sprintf(s, args...))
}