mirror of
https://github.com/tendermint/tendermint.git
synced 2026-04-14 20:57:03 +00:00
10 lines
120 B
Go
10 lines
120 B
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Panicf(s string, args ...interface{}) {
|
|
panic(fmt.Sprintf(s, args...))
|
|
}
|