Skip to content

Commit 16f9e82

Browse files
committed
workaround fix
1 parent 3297765 commit 16f9e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wallet/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ namespace beam
586586

587587
void Wallet::OnRequestComplete(MyRequestUtxoEvents& r)
588588
{
589-
const std::vector<proto::UtxoEvent>& v = r.m_Res.m_Events;
589+
std::vector<proto::UtxoEvent>& v = r.m_Res.m_Events;
590590
for (size_t i = 0; i < v.size(); i++)
591591
{
592592
proto::UtxoEvent& evt = v[i];

0 commit comments

Comments
 (0)