mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 19:04:32 +02:00
Fix unix warnings
This commit is contained in:
parent
1400c66506
commit
bcbddb7106
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ void Ledger::updateLocation(const QString& asset_id, const QString location, con
|
|||
auto walletScriptingInterface = DependencyManager::get<WalletScriptingInterface>();
|
||||
uint walletStatus = walletScriptingInterface->getWalletStatus();
|
||||
|
||||
if (walletStatus != wallet->WALLET_STATUS_READY) {
|
||||
if (walletStatus != (uint)wallet->WALLET_STATUS_READY) {
|
||||
emit walletScriptingInterface->walletNotSetup();
|
||||
qDebug(commerce) << "User attempted to update the location of a certificate, but their wallet wasn't ready. Status:" << walletStatus;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue