Currently the tx hash is computed as RIPEMD160(amino_encode(tx))
This has the effect of just prefixing the varint length before hashing.
We should avoid doing this, for simplicity (ie. just the hash of the underlying tx - it would already be encoded with something like amino at the app level).
Also we should move to SHA256[:20]