ABCI w/ more non-nullable fields

This commit is contained in:
Jae Kwon
2017-12-22 00:23:37 -08:00
parent e308810a51
commit e7b38b3fb9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ func (c Context) TxBytes() []byte {
// Unexposed to prevent overriding.
func (c Context) setBlockHeader(header abci.Header) Context {
var _ proto.Message = header // for cloning.
var _ proto.Message = &header // for cloning.
return c.withValue(contextKeyBlockHeader, header)
}