fix copy bytecode

pull/5370/head
Aniket-Engg 2 years ago committed by Aniket
parent 11b6303038
commit ce5072e926
  1. 3
      libs/remix-ui/solidity-compiler/src/lib/contract-selection.tsx

@ -188,7 +188,8 @@ export const ContractSelection = (props: ContractSelectionProps) => {
}
const copyBytecode = () => {
return copyContractProperty('bytecode')
const bytecodeObj = JSON.parse(copyContractProperty('bytecode'))
return bytecodeObj.object
}
return (

Loading…
Cancel
Save