Merge pull request #1680 from RafaelTaranto/feat/scorechain
[LAM-1093] feat: scorechain address analysis
This commit is contained in:
commit
d109feb5a8
17 changed files with 173 additions and 309 deletions
13
migrations/1716974904249-ciphertrace-error-code.js
Normal file
13
migrations/1716974904249-ciphertrace-error-code.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const db = require('./db')
|
||||
|
||||
exports.up = function (next) {
|
||||
let sql = [
|
||||
`UPDATE cash_out_txs SET error_code = 'walletScoringError' WHERE error_code = 'ciphertraceError'`
|
||||
]
|
||||
|
||||
db.multi(sql, next)
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
next()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue