Browse Source

error message change

wb/txrset
William Banfield 3 years ago
parent
commit
4d8e81a1f5
No known key found for this signature in database GPG Key ID: EFAD3442BF29E3AC
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      abci/types/types.go

+ 1
- 1
abci/types/types.go View File

@ -275,7 +275,7 @@ func (rpp *ResponsePrepareProposal) Validate(maxSizeBytes int64, otxs [][]byte)
}
} else {
if tr.Action == TxRecord_REMOVED || tr.Action == TxRecord_UNMODIFIED {
return fmt.Errorf("new transaction incorrectly marked as %s", tr.Action.String())
return fmt.Errorf("unmodified transaction incorrectly marked as %s", tr.Action.String())
}
}
if tr.Action == TxRecord_UNKNOWN {


Loading…
Cancel
Save