# Code Smell 157 - Balance at 0

> TL;DR: Null is not 0. Error is not 0. just 0 is 0.

# Problems

- [Nulls](https://maximilianocontieri.com/null-the-billion-dollar-mistake)

- UX

- Usability

# Solutions

1. Make a clear distinction between a Zero and an error.

# Context

I read a lot about security issues. 

Especially on crypto.

Last week, I read about a [crypto hack thread](https://twitter.com/stephenlacy/status/1554697083331891201).

When my wallet showed me 0 as a balance, I panicked.

It was just a UX smell.

The blockchain was unreachable 💩

# Sample Code

## Wrong

[Gist Url]: # (https://gist.github.com/mcsee/4b6caebfa8707878eba0416c260fd180)
```python
"""
Below code is automatically generated by code-davinci-002 on GTP3 Codex

1. check balance with blockchain
2. If blockchain is unreachable show 0 as the balance
"""

import requests
import json

def get_balance(address):
    url = "https://blockchain.info/q/addressbalance/" + address
    response = requests.get(url)
    if response.status_code == 200:
        return response.text
    else:
        return 0      
      


```

## Right

[Gist Url]: # (https://gist.github.com/mcsee/f59614042404c4d55eac82d3f6f9c8a0)
```python
"""
Below code is automatically generated by code-davinci-002 on GTP3 Codex

1. check balance with blockchain
2. If blockchain is unreachable throw an error
"""

import requests
import json

def get_balance(address):
    url = "https://blockchain.info/q/addressbalance/" + address
    response = requests.get(url)
    if response.status_code == 200:
        return response.text
    else:
        raise BlockchainNotReachableError("Error reaching blockchain")
```

# Detection

[X] Manual

This is a design smell. 

We can find patterns when an [exception](https://maximilianocontieri.com/code-smell-73-exceptions-for-expected-cases) or [return code](https://maximilianocontieri.com/code-smell-72-return-codes) is thrown and masked with a 0.

# Tags

- UX

# Conclusion

Always follow The [Least Astonishment principle](https://en.wikipedia.org/wiki/Principle_of_least_astonishment) as a guide.

# Relations

%[https://maximilianocontieri.com/code-smell-12-null]

%[https://maximilianocontieri.com/code-smell-139-business-code-in-the-user-interface]

%[https://maximilianocontieri.com/code-smell-73-exceptions-for-expected-cases]

%[https://maximilianocontieri.com/code-smell-72-return-codes]

# More Info

%[https://maximilianocontieri.com/null-the-billion-dollar-mistake]

# Credit

Photo by [Jasmin Sessler](https://unsplash.com/@jasmin_sessler) on [Unsplash](https://unsplash.com/s/photos/panic)  

# Disclaimer

Code Smells are just my [opinion](https://maximilianocontieri.com/i-wrote-more-than-90-articles-on-2021-here-is-what-i-learned).

> My real criticism with Null is that it brings back again unnecessarily all the agony of having to choose whether to run your program fast without checking or run it slow with checking.

_Tony Hoare_ (Null Inventor)
 
%[https://maximilianocontieri.com/software-engineering-great-quotes]

* * *

This article is part of the CodeSmell Series.

%[https://maximilianocontieri.com/how-to-find-the-stinky-parts-of-your-code]
