fix: removed empty spaces in transaction messages

pull/1342/head
davidzagi93@gmail.com 3 years ago
parent 8bf93efdd5
commit 8d6a83303e
  1. 4
      libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx

@ -563,10 +563,10 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
if (opts.status === '0x0' || opts.status === false) {
msg = 'Transaction mined but execution failed'
} else if (opts.status === '0x1' || opts.status === true) {
msg = ' Transaction mined and execution succeed'
msg = 'Transaction mined and execution succeed'
}
} else {
msg = ' Status not available at the moment'
msg = 'Status not available at the moment'
}
}

Loading…
Cancel
Save