pull/5370/head
Joseph Izang 12 months ago
parent 3a5cf2678b
commit 5e1c1e89af
  1. 1
      apps/vyper/src/app/app.tsx
  2. 1
      apps/vyper/src/app/components/CompilerButton.tsx
  3. 4
      apps/vyper/src/app/utils/compiler.tsx

@ -105,7 +105,6 @@ const App: React.FC = () => {
/> />
</div> </div>
{console.log(output)}
<article id="result" className="px-2 mx-2 border-top mt-3"> <article id="result" className="px-2 mx-2 border-top mt-3">
{ {
output && Object.keys(output).length > 0 && output.status !== 'failed' ? ( output && Object.keys(output).length > 0 && output.status !== 'failed' ? (

@ -52,7 +52,6 @@ function CompilerButton({contract, setOutput, compilerUrl, resetCompilerState}:
} }
const compileReturnType = () => { const compileReturnType = () => {
const t: any = toStandardOutput(contract, output) const t: any = toStandardOutput(contract, output)
console.log(t)
const temp = _.merge(t['contracts'][contract]) const temp = _.merge(t['contracts'][contract])
const normal = normalizeContractPath(contract)[2] const normal = normalizeContractPath(contract)[2]
const abi = temp[normal]['abi'] const abi = temp[normal]['abi']

@ -87,7 +87,7 @@ export async function compile(url: string, contract: Contract): Promise<any> {
} }
} }
let response = await axios.post(`${url}compile`, compilePackage ) let response = await axios.post(`${url}compile`, compilePackage )
console.log(response)
if (response.status === 404) { if (response.status === 404) {
throw new Error(`Vyper compiler not found at "${url}".`) throw new Error(`Vyper compiler not found at "${url}".`)
} }
@ -107,7 +107,7 @@ export async function compile(url: string, contract: Contract): Promise<any> {
result = await(await axios.get(url + 'artifacts/' + compileCode , { result = await(await axios.get(url + 'artifacts/' + compileCode , {
method: 'Get' method: 'Get'
})).data })).data
console.log(result)
return result return result
} else if (status === 'FAILED') { } else if (status === 'FAILED') {
const intermediate = await(await axios.get(url + 'exceptions/' + compileCode , { const intermediate = await(await axios.get(url + 'exceptions/' + compileCode , {

Loading…
Cancel
Save