Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #277 from gnosis/revert-before-refactor-changes
Browse files Browse the repository at this point in the history
Revert before refactor changes
  • Loading branch information
germartinez authored Nov 19, 2019
2 parents ad6cc77 + 579cde3 commit 7d887d1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/config/staging-mainnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TX_SERVICE_HOST, RELAY_API_URL } from '~/config/names'

const stagingMainnetConfig = {
...stagingConfig,
[TX_SERVICE_HOST]: 'https://safe-transaction.mainnet.gnosis.io/api/v1/',
[TX_SERVICE_HOST]: 'https://safe-transaction.mainnet.staging.gnosisdev.com/api/v1/',
[RELAY_API_URL]: 'https://safe-relay.gnosis.io/api/v1/',
}

Expand Down
2 changes: 1 addition & 1 deletion src/config/staging.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { TX_SERVICE_HOST, SIGNATURES_VIA_METAMASK, RELAY_API_URL } from '~/config/names'

const stagingConfig = {
[TX_SERVICE_HOST]: 'https://safe-transaction.rinkeby.gnosis.io/api/v1/',
[TX_SERVICE_HOST]: 'https://safe-transaction.staging.gnosisdev.com/api/v1/',
[SIGNATURES_VIA_METAMASK]: false,
[RELAY_API_URL]: 'https://safe-relay.staging.gnosisdev.com/api/v1/',
}
Expand Down
12 changes: 6 additions & 6 deletions src/routes/safe/store/actions/createTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ const createTransaction = (
closeSnackbar(beforeExecutionKey)

pendingExecutionKey = showSnackbar(notificationsQueue.pendingExecution, enqueueSnackbar, closeSnackbar)
})
.on('error', (error) => {
console.error('Tx error: ', error)
})
.then(async (receipt) => {
closeSnackbar(pendingExecutionKey)

try {
await saveTxToHistory(
Expand All @@ -94,6 +88,12 @@ const createTransaction = (
} catch (err) {
console.error(err)
}
})
.on('error', (error) => {
console.error('Tx error: ', error)
})
.then((receipt) => {
closeSnackbar(pendingExecutionKey)

showSnackbar(
isExecution
Expand Down
14 changes: 7 additions & 7 deletions src/routes/safe/store/actions/processTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,11 @@ const processTransaction = (

await transaction
.send(sendParams)
.once('transactionHash', (hash) => {
.once('transactionHash', async (hash) => {
txHash = hash
closeSnackbar(beforeExecutionKey)

pendingExecutionKey = showSnackbar(notificationsQueue.pendingExecution, enqueueSnackbar, closeSnackbar)
})
.on('error', (error) => {
console.error('Processing transaction error: ', error)
})
.then(async (receipt) => {
closeSnackbar(pendingExecutionKey)

try {
await saveTxToHistory(
Expand All @@ -130,6 +124,12 @@ const processTransaction = (
} catch (err) {
console.error(err)
}
})
.on('error', (error) => {
console.error('Processing transaction error: ', error)
})
.then((receipt) => {
closeSnackbar(pendingExecutionKey)

showSnackbar(
shouldExecute
Expand Down

0 comments on commit 7d887d1

Please sign in to comment.