Add sleep() between identity_of() calls in a loop
`blocks`, `history --uids`, and `transfer` commands are requesting in a loop `identity_of()` to get `uids` from pubkeys. There is too much requests at the same time for BMA to answer. Adding a `time.sleep()` in between solves the issue to retrieve the `uids` in order for not getting a broken state. This is specially the case on local node.
issue