File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -837,8 +837,11 @@ Transactor::checkMultiSign(
837837 // We have plans to support multiple SignerLists in the future. The
838838 // presence and defaulted value of the SignerListID field will enable
839839 // that.
840- assert (sleAllowedSigners->isFieldPresent (sfSignerListID));
841- assert (sleAllowedSigners->getFieldU32 (sfSignerListID) == 0 );
840+ XRPL_ASSERT (
841+ sleAllowedSigners->isFieldPresent (sfSignerListID), " xrpl::Transactor::checkMultiSign : has signer list ID" );
842+ XRPL_ASSERT (
843+ sleAllowedSigners->getFieldU32 (sfSignerListID) == 0 ,
844+ " xrpl::Transactor::checkMultiSign : signer list ID is 0" );
842845
843846 uint32_t const quorum = sleAllowedSigners->getFieldU32 (sfSignerQuorum);
844847 uint32_t sum{0 };
You can’t perform that action at this time.
0 commit comments