mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-29 08:42:14 +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...))
|
|
}
|