Review: forceParseRfc3339 -> mustParseRfc3339

This commit is contained in:
Joel Burget 2017-08-17 11:49:41 -04:00
parent edcbde3336
commit 39fc09e457
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ var (
blockReward *big.Int = big.NewInt(5e+18) // Block reward in wei for successfully mining a block
maxUncles = 2 // Maximum number of uncles allowed in a single block
nanosecond2017Timestamp = forceParseRfc3339("2017-01-01T00:00:00+00:00").UnixNano()
nanosecond2017Timestamp = mustParseRfc3339("2017-01-01T00:00:00+00:00").UnixNano()
)
// Various error messages to mark blocks invalid. These should be private to
@ -60,7 +60,7 @@ var (
errInvalidPoW = errors.New("invalid proof-of-work")
)
func forceParseRfc3339(str string) time.Time {
func mustParseRfc3339(str string) time.Time {
time, err := time.Parse(time.RFC3339, str)
if err != nil {
panic("unexpected failure to parse rfc3339 timestamp: " + str)