Skip to content

Commit

Permalink
fixed typo in sql statement
Browse files Browse the repository at this point in the history
  • Loading branch information
anatolse committed Dec 3, 2023
1 parent 01ba949 commit 199fa06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2009,7 +2009,7 @@ void NodeDB::EnumAccounts(WalkerAccount& wlk)

void NodeDB::SetAccountTxoHi(WalkerAccount::Data& d)
{
Recordset rs(*this, Query::AccountUpdTxoHi, "UPDATE " TblAccounts " SET " TblAccounts_TxoHi "=? WHERE" TblAccounts_Index "=?");
Recordset rs(*this, Query::AccountUpdTxoHi, "UPDATE " TblAccounts " SET " TblAccounts_TxoHi "=? WHERE " TblAccounts_Index "=?");
rs.put(0, d.m_hTxoHi);
rs.put(1, d.m_iAccount);

Expand Down

0 comments on commit 199fa06

Please sign in to comment.