| 247 | unsigned int nBytesPerSigOp = DEFAULT_BYTES_PER_SIGOP; |
| 248 | |
| 249 | int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost) |
| 250 | { |
| 251 | return (std::max(nWeight, nSigOpCost * nBytesPerSigOp) + WITNESS_SCALE_FACTOR - 1) / WITNESS_SCALE_FACTOR; |
| 252 | } |
| 253 | |
| 254 | int64_t GetVirtualTransactionSize(const CTransaction& tx, int64_t nSigOpCost) |
| 255 | { |