aboutsummaryrefslogtreecommitdiffstats
path: root/les/protocol.go
diff options
context:
space:
mode:
authorFelföldi Zsolt <zsfelfoldi@gmail.com>2018-01-27 01:30:45 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-01-27 01:30:45 +0800
commit23bca0f374b3e1ccfa19bfeb86d06a0aca82184b (patch)
tree1bc753c7f9b3170fef68f37484d8572fb74c0087 /les/protocol.go
parent367c329b88617a2831a9fe20f7b47bb6ab7e255d (diff)
downloaddexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar.gz
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar.bz2
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar.lz
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar.xz
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.tar.zst
dexon-23bca0f374b3e1ccfa19bfeb86d06a0aca82184b.zip
les: fix TxStatusMsg RLP coding (#15974)
Diffstat (limited to 'les/protocol.go')
-rw-r--r--les/protocol.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/les/protocol.go b/les/protocol.go
index 6a7354d1c..e1c4625bc 100644
--- a/les/protocol.go
+++ b/les/protocol.go
@@ -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
}