les: fix TxStatusMsg RLP coding (#15974)

This commit is contained in:
Felföldi Zsolt
2018-01-26 18:30:45 +01:00
committed by Péter Szilágyi
parent 367c329b88
commit 23bca0f374
3 changed files with 5 additions and 5 deletions

View File

@ -224,6 +224,6 @@ type proofsData [][]rlp.RawValue
type txStatus struct {
Status core.TxStatus
Lookup *core.TxLookupEntry
Error error
Lookup *core.TxLookupEntry `rlp:"nil"`
Error string
}