Remove unused exported error value

pull/586/head
Jack Christensen 2019-08-17 15:56:36 -05:00
parent c3e41872a8
commit 64b4414efc
1 changed files with 0 additions and 1 deletions

1
tx.go
View File

@ -67,7 +67,6 @@ func (txOptions TxOptions) beginSQL() string {
}
var ErrTxClosed = errors.New("tx is closed")
var ErrTxInFailure = errors.New("tx failed")
// ErrTxCommitRollback occurs when an error has occurred in a transaction and
// Commit() is called. PostgreSQL accepts COMMIT on aborted transactions, but