From 73d6aca4151a9a4356ef46af3a21266853de7124 Mon Sep 17 00:00:00 2001 From: matijamarjanovic Date: Sat, 18 Jan 2025 01:20:39 +0100 Subject: [PATCH] add comment for myself --- .../gno.land/r/matijamarjanovic/gnocket/wallet_registry.gno | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/gno.land/r/matijamarjanovic/gnocket/wallet_registry.gno b/examples/gno.land/r/matijamarjanovic/gnocket/wallet_registry.gno index 498969e6b50..0e7a67b423b 100644 --- a/examples/gno.land/r/matijamarjanovic/gnocket/wallet_registry.gno +++ b/examples/gno.land/r/matijamarjanovic/gnocket/wallet_registry.gno @@ -46,6 +46,8 @@ func NewWallet() *Wallet { wallet.tokenBalances.Set(tokenKey, tokenBalance) } + // TODO: research std.Emit (use it to listen for events and update the wallet balances) + return wallet }