Commit a568fd41 authored by davidzagi93@gmail.com's avatar davidzagi93@gmail.com

fix: removed empty spaces in transaction messages

parent 95dae26a
...@@ -563,10 +563,10 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => { ...@@ -563,10 +563,10 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
if (opts.status === '0x0' || opts.status === false) { if (opts.status === '0x0' || opts.status === false) {
msg = 'Transaction mined but execution failed' msg = 'Transaction mined but execution failed'
} else if (opts.status === '0x1' || opts.status === true) { } else if (opts.status === '0x1' || opts.status === true) {
msg = ' Transaction mined and execution succeed' msg = 'Transaction mined and execution succeed'
} }
} else { } else {
msg = ' Status not available at the moment' msg = 'Status not available at the moment'
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment