fix(proof): fix not remove proof

This commit is contained in:
jzhe 2020-10-15 20:29:46 +08:00
parent 7fd969696d
commit 30494e56dd
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ func (pl *VerifyPool) CheckProof(tx *pb.Transaction) (bool, error) {
"id": ibtp.ID()}).Error("ibtp verify fail") "id": ibtp.ID()}).Error("ibtp verify fail")
return false, nil return false, nil
} }
tx.Extra = nil
//TODO(jz): need to remove the proof
//tx.Extra = nil
} }
return true, nil return true, nil
} }