You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
I'm new to RLP encoding. I'm writing a C++ application in Qt which should send a raw transaction. I installed and compiled the aleth framework. What are the steps to get an RLP encoded string of a JSON?
dev::RLP *m_rlp;
m_rlp = new dev::RLP(json, dev::RLP::VeryStrict);
If I compile and run the application I get the following error:
terminate called after throwing an instance of 'boost::wrapexcept<dev::OversizeRLP>'
what(): /home/damian/src/aleth/libdevcore/RLP.cpp(28): Throw in function dev::RLP::RLP(dev::bytesConstRef, dev::RLP::Strictness)
Dynamic exception type: boost::wrapexcept<dev::OversizeRLP>
[dev::tag_comment*] = Actual size: 1, data size: 10
The text was updated successfully, but these errors were encountered:
I'm new to RLP encoding. I'm writing a C++ application in Qt which should send a raw transaction. I installed and compiled the aleth framework. What are the steps to get an RLP encoded string of a JSON?
My JSON looks like this:
I've tried the following:
If I compile and run the application I get the following error:
The text was updated successfully, but these errors were encountered: