Create get_currency() helper
While implementing revocation, I need to get the whole head block just to get the currency:
```python
head_block = HeadBlock().head_block
currency = head_block["currency"]
```
I suggest we create a function get_currency() that would only return the currency codename.
issue