This commit is contained in:
Daniel 2025-07-05 12:33:41 +08:00
parent 6e1f54238a
commit ffb88a72d6
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 67 additions and 67 deletions

View file

@ -98,7 +98,7 @@ func flushTx(tx *Transaction) {
return
case TxErrCodeDataIsSyncing:
util.PushMsg(Conf.Language(222), 5000)
case TxErrWriteAttributeView:
case TxErrHandleAttributeView:
util.PushMsg(Conf.language(258), 5000)
logging.LogErrorf("handle attribute view failed: %s", txErr.msg)
default:
@ -123,10 +123,10 @@ func PerformTransactions(transactions *[]*Transaction) {
}
const (
TxErrCodeBlockNotFound = 0
TxErrCodeDataIsSyncing = 1
TxErrCodeWriteTree = 2
TxErrWriteAttributeView = 3
TxErrCodeBlockNotFound = 0
TxErrCodeDataIsSyncing = 1
TxErrCodeWriteTree = 2
TxErrHandleAttributeView = 3
)
type TxErr struct {