Commit 02e1456b authored by yxq's avatar yxq Committed by vipwzw

fix bug

parent de09ce47
...@@ -47,7 +47,7 @@ func newAction(t *Paracross, tx *types.Transaction) *action { ...@@ -47,7 +47,7 @@ func newAction(t *Paracross, tx *types.Transaction) *action {
func getNodes(db dbm.KV, key []byte) (map[string]struct{}, []string, error) { func getNodes(db dbm.KV, key []byte) (map[string]struct{}, []string, error) {
item, err := db.Get(key) item, err := db.Get(key)
if err != nil { if err != nil {
clog.Info("getNodes", "get db key", string(key), "failed", err) //clog.Info("getNodes", "get db key", string(key), "failed", err)
if isNotFound(err) { if isNotFound(err) {
err = pt.ErrTitleNotExist err = pt.ErrTitleNotExist
} }
...@@ -1367,7 +1367,7 @@ func crossTxProc(a *action, txHash []byte, fn func(*action, *types.TransactionDe ...@@ -1367,7 +1367,7 @@ func crossTxProc(a *action, txHash []byte, fn func(*action, *types.TransactionDe
clog.Crit("paracross.Commit Load Tx failed", "error", err, "txHash", common.ToHex(txHash)) clog.Crit("paracross.Commit Load Tx failed", "error", err, "txHash", common.ToHex(txHash))
return nil, err return nil, err
} }
if tx == nil { if tx == nil || tx.Tx == nil {
clog.Error("paracross.Commit Load Tx nil", "error", err, "txHash", common.ToHex(txHash)) clog.Error("paracross.Commit Load Tx nil", "error", err, "txHash", common.ToHex(txHash))
return nil, types.ErrHashNotExist return nil, types.ErrHashNotExist
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment