| 235 | return llFees >= minFee; |
| 236 | } |
| 237 | string CBaseTx::ToString(CAccountDBCache &accountCache) { |
| 238 | return strprintf("txType=%s", GetTxType(nTxType)) + ", " + |
| 239 | strprintf("hash=%s", GetHash().GetHex()) + ", " + |
| 240 | strprintf("ver=%d", nVersion) + ", " + |
| 241 | strprintf("valid_height=%d", valid_height) + ", " + |
| 242 | strprintf("tx_uid=%s", txUid.ToDebugString()) + ", " + |
| 243 | strprintf("fee_symbol=%llu", fee_symbol) + ", " + |
| 244 | strprintf("fees=%llu", llFees) + ", " + |
| 245 | strprintf("signature=%s", HexStr(signature)); |
| 246 | } |
| 247 | |
| 248 | Object CBaseTx::ToJson(CCacheWrapper &cw) const { |
| 249 | Object result; |