Skip to content

Commit e2d8199

Browse files
committed
minor fixes
1 parent d8cb690 commit e2d8199

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

util/ui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ bool getOutputsToSend( const QString & accountName, int outputsNumber, int64_t n
249249
if ( !hodlStatus->hasAnyOutputsInHODL() && !appContext->isLockOutputEnabled() )
250250
return true; // Nothing in HODL, let's wallet handle it
251251

252-
QVector<wallet::WalletOutput> outputs = wallet->getwalletOutputs().value(accountName);
252+
const QVector<wallet::WalletOutput>& outputs = wallet->getwalletOutputs().value(accountName);
253253

254254
QVector<QPair<wallet::WalletOutput, core::HodlOutputInfo>> hodlOuts;
255255
QVector<wallet::WalletOutput> freeOuts;

wallet/mwc713.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ MWC713::MWC713(QString _mwc713path, QString _mwc713configPath, core::AppContext
6060
// Listening for Output Locking changes
6161
QObject::connect(appContext, &core::AppContext::onOutputLockChanged, this, &MWC713::onOutputLockChanged, Qt::QueuedConnection);
6262

63-
void onOutputLockChanged(QString commit);
6463
}
6564

6665
MWC713::~MWC713() {

0 commit comments

Comments
 (0)