RLP报错

SendTransactionCoordinator>>error=
responseError(JSONRPCKit.JSONRPCError.responseError(code: -32000, message: "rlp: input string too short for common.Address, decoding into (types.Transaction)(types.txdata).Token", data: nil))

再看看RLP是什么意思?

RLP(Recursive Length Prefix,递归的长度前缀)是一种编码规则,可用于编码任意嵌套的二进制数组数据。RLP编码的结果也是二进制序列。RLP主要用来序列化/反序列化数据。

参考博文:

https://blog.csdn.net/ggq89/article/details/78629008

你可能感兴趣的:(RLP报错)