Skip to content

Commit

Permalink
update evm verifier result string to be more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-crypto committed Nov 2, 2023
1 parent a432127 commit 2233cb2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/in-browser-evm-verify/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export default function InBrowserEvmVerify() {
// Update result based on the outcome
setEvmVerifyResult(
output
? 'Verification successful. Execution time: ' + executionTime + ' ms'
: 'Verification failed'
? 'In-browser EVM Verification successful. Execution time: ' + executionTime + ' ms'
: 'In-browser EVM Verification failed'
)
})
.catch(error => {
Expand Down Expand Up @@ -145,7 +145,6 @@ function VerifyingArtifactForm({
alert: string
warning: string
}) {
const [EvmVerifyResult, setEvmVerifyResult] = useState('')
const [selectedVersion, setSelectedVersion] = useState<Hardfork>(Hardfork.Istanbul);

const handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
Expand Down

0 comments on commit 2233cb2

Please sign in to comment.