mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-11 07:20:19 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Panicf(s string, args ...interface{}) {
|
|
panic(fmt.Sprintf(s, args...))
|
|
}
|