package state func (s *State) GetBalance(addr string) uint64 { s.mu.RLock() defer s.mu.RUnlock() return s.Balances[addr] }