good morning!!!!

Skip to content
Snippets Groups Projects
Commit 28c7b54d authored by Péter Szilágyi's avatar Péter Szilágyi
Browse files

core: fix #1921, decode all receipt field, not just consensus

parent 58d0752f
No related branches found
No related tags found
No related merge requests found
......@@ -124,13 +124,12 @@ func GetReceipt(db ethdb.Database, txHash common.Hash) *types.Receipt {
if len(data) == 0 {
return nil
}
var receipt types.Receipt
var receipt types.ReceiptForStorage
err := rlp.DecodeBytes(data, &receipt)
if err != nil {
glog.V(logger.Core).Infoln("GetReceipt err:", err)
}
return &receipt
return (*types.Receipt)(&receipt)
}
// GetBlockReceipts returns the receipts generated by the transactions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment