| 206 | } |
| 207 | |
| 208 | DexOpIdValueList GetOrderOpenDexopList(const Value& jsonValue) { |
| 209 | DexOpIdValueList ret; |
| 210 | const Array &arr = jsonValue.get_array(); |
| 211 | for (auto &item : arr) { |
| 212 | ret.push_back(CVarIntValue(item.get_uint64())); |
| 213 | } |
| 214 | return ret; |
| 215 | } |
| 216 | |
| 217 | |
| 218 | void CheckOrderFee(CAccount &txAccount, const ComboMoney &txFee, uint64_t minTxFeeAmount, |
no test coverage detected