docs: update docs links to v0.47 (#14572)

This commit is contained in:
Julien Robert
2023-01-12 11:57:53 +00:00
committed by GitHub
parent 538f7ce723
commit e4c0788bf2
75 changed files with 711 additions and 2556 deletions
+6 -6
View File
@@ -25,12 +25,12 @@ import (
)
const (
runTxModeCheck runTxMode = iota // Check a transaction
runTxModeReCheck // Recheck a (pending) transaction after a commit
runTxModeSimulate // Simulate a transaction
runTxModeDeliver // Deliver a transaction
runTxPrepareProposal
runTxProcessProposal
runTxModeCheck runTxMode = iota // Check a transaction
runTxModeReCheck // Recheck a (pending) transaction after a commit
runTxModeSimulate // Simulate a transaction
runTxModeDeliver // Deliver a transaction
runTxPrepareProposal // Prepare a TM block proposal
runTxProcessProposal // Process a TM block proposal
)
var _ abci.Application = (*BaseApp)(nil)