A very experimental PLC implementation which uses BFT consensus for decentralization

Fix another source of non-determinism

gbl08ma.com 5ae01b9f 44edad51

verified
+1 -1
+1 -1
abciapp/range_challenge.go
··· 343 343 return nil, stacktrace.NewError("block not found at height") 344 344 } 345 345 346 - if time.Since(toHeightBlockMeta.Header.Time) > CommitToChallengeMaxAge { 346 + if tx.Timestamp().Sub(toHeightBlockMeta.Header.Time) > CommitToChallengeMaxAge { 347 347 return nil, stacktrace.NewError("too much time passed since block at height") 348 348 } 349 349