tangled
alpha
login
or
join now
gbl08ma.com
/
didplcbft
24
fork
atom
A very experimental PLC implementation which uses BFT consensus for decentralization
24
fork
atom
overview
issues
pulls
pipelines
Enforce presence of epoch transaction
gbl08ma.com
2 weeks ago
e7cbd734
b7279b55
verified
This commit was signed with the committer's
known signature
.
gbl08ma.com
SSH Key Fingerprint:
SHA256:NkaTDGnGWRZlEnrKxt4ih8fpbNEuHeYdbkJk7VYd+1o=
+1
-1
1 changed file
expand all
collapse all
unified
split
abciapp
execution.go
+1
-1
abciapp/execution.go
···
217
217
txResults[i] = result
218
218
}
219
219
220
220
-
if isUpdateValidatorsTxHeight(req.Height) && !foundEpochTransaction {
220
220
+
if isUpdateValidatorsTxHeight(req.Height) != foundEpochTransaction {
221
221
return &abcitypes.ResponseProcessProposal{Status: abcitypes.ResponseProcessProposal_REJECT}, nil
222
222
}
223
223