mirror of
https://github.com/tendermint/tendermint.git
synced 2026-04-29 11:56:56 +00:00
10 lines
120 B
Go
10 lines
120 B
Go
package blocks
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func panicf(s string, args ...interface{}) {
|
|
panic(fmt.Sprintf(s, args...))
|
|
}
|