fix: chain ID

This commit is contained in:
Sérgio Salgado 2022-06-16 18:42:20 +01:00
parent f95d3e9992
commit fb46d6e7a9

View file

@ -244,7 +244,7 @@ settingsLoader.loadLatest()
}
const opts = {
chainId: 3,
chainId: 1,
nonce: 0,
includesFee: true
}
@ -265,12 +265,12 @@ settingsLoader.loadLatest()
return fs.rmdir(LOCKFILE_PATH)
})
.then(() => {
console.log('lamassu-eth-pending-sweep lock file successfully removed, you may now execute the upgrade script again')
console.log('lamassu-eth-pending-sweep lock file successfully removed')
return fs.mkdir(`${LOCKFILE_PATH}-finished`)
})
.then(() => {
console.log('lamassu-eth-pending-sweep-finished lock file successfully created, this will automatically be deleted once the upgrade script finishes running')
console.log('Process finished successfully!')
console.log('Process finished successfully! You may now execute the upgrade script again')
process.exit(0)
})
.catch(err => {