mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 14:50:54 +00:00
Permit memos up to 1Kb.
* Overlong memos are basically treated like invalid signatures. * Ability to clear message key.
This commit is contained in:
committed by
Vinnie Falco
parent
ae649ec917
commit
370bfb7a22
@@ -733,7 +733,7 @@ void NetworkOPsImp::submitTransaction (Job&, SerializedTransaction::pointer iTra
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!trans->checkSign ())
|
||||
if (!trans->isMemoOkay () || !trans->checkSign ())
|
||||
{
|
||||
m_journal.warning << "Submitted transaction has bad signature";
|
||||
getApp().getHashRouter ().setFlag (suppress, SF_BAD);
|
||||
|
||||
Reference in New Issue
Block a user