currently gentx events are dropped:
|
func (ba *BaseApp) ExecuteGenesisTx(tx []byte) error { |
|
res := ba.deliverTx(tx, nil, nil, -1, nil) |
|
|
|
if res.Code != types.CodeTypeOK { |
|
return errors.New(res.Log) |
|
} |
|
|
|
return nil |
|
} |
this makes it difficult to build indexing solutions that solely use events for tracking chain state. is there any way to read these events?
currently gentx events are dropped:
cosmos-sdk/baseapp/genesis.go
Lines 15 to 23 in ce68724
this makes it difficult to build indexing solutions that solely use events for tracking chain state. is there any way to read these events?