mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-14 05:41:21 +00:00
remove tags from CheckTx
add value_type field to KVPair
This commit is contained in:
@ -111,9 +111,9 @@ func ToResponseDeliverTx(code CodeType, data []byte, log string, tags []*KVPair)
|
||||
}
|
||||
}
|
||||
|
||||
func ToResponseCheckTx(code CodeType, data []byte, log string, tags []*KVPair) *Response {
|
||||
func ToResponseCheckTx(code CodeType, data []byte, log string) *Response {
|
||||
return &Response{
|
||||
Value: &Response_CheckTx{&ResponseCheckTx{code, data, log, tags}},
|
||||
Value: &Response_CheckTx{&ResponseCheckTx{code, data, log}},
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user