Skip to content

Commit 7e651c8

Browse files
author
ruancheng
committed
remove unnecessary code
1 parent 0289cde commit 7e651c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ripple/protocol/impl/STTx.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ STTx::STTx (STObject&& object)
7474
paJsonLog_ = std::make_shared<Json::Value>();
7575
}
7676

77-
std::pair<std::shared_ptr<STTx>, std::string> STTx::parseSTTx(Json::Value& obj, AccountID accountID, Blob publicKey)
77+
std::pair<std::shared_ptr<STTx>, std::string> STTx::parseSTTx(Json::Value& obj, AccountID accountID)
7878
{
7979
std::string err_message;
8080
int transactionType = 0;
@@ -354,7 +354,7 @@ std::vector<STTx> STTx::getTxs(STTx const& tx, std::string sTableNameInDB /* = "
354354
if (!includeAssert && type == T_ASSERT)
355355
continue;
356356

357-
auto tx_pair = parseSTTx(obj, accountID,publicKey);
357+
auto tx_pair = parseSTTx(obj, accountID);
358358
if (tx_pair.first)
359359
{
360360
auto tx = *tx_pair.first;

0 commit comments

Comments
 (0)