A very experimental PLC implementation which uses BFT consensus for decentralization

Avoid expected error

gbl08ma.com 3abd7c5f 244a26e5

verified
+5
+5
abciapp/range_challenge.go
··· 240 240 return stacktrace.Propagate(err) 241 241 } 242 242 243 + if newBlockHeight < CommitToChallengeMinRange { 244 + // it's too early for us to care about range challenges 245 + return nil 246 + } 247 + 243 248 tx := c.txFactory.ReadCommitted() 244 249 if tx.Height() < newBlockHeight { 245 250 return stacktrace.NewError("read committed transaction height lower than expected: new block height %d, transaction height %d", newBlockHeight, tx.Height())