bool checkMoneyOverflow(const TransactionPrefix &tx) {
  return checkInputsOverflow(tx) && checkOutsOverflow(tx);
}
bool TransactionPrefixImpl::validateOutputs() const {
  return
    checkOutsValid(m_txPrefix) &&
    checkOutsOverflow(m_txPrefix);
}