mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-01 01:32:13 +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...))
|
|
}
|