fix: add embark-geth as a plugin

This commit is contained in:
Jonathan Rainville 2020-03-09 13:28:38 -04:00
parent 262f220d89
commit 1ca04dbea4
No known key found for this signature in database
GPG Key ID: 5F4630B759727D9C
3 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,8 @@
"@trailofbits/embark-contract-info": {
"flags": ""
},
"embark-solc": {}
"embark-solc": {},
"embark-geth": {}
},
"options": {
"solc": {

View File

@ -56,6 +56,7 @@
"dompurify": "^2.0.1",
"elliptic": "^6.5.0",
"embark": "5.2.3",
"embark-geth": "5.2.3",
"embark-solc": "5.2.3",
"embark-solium": "0.1.0",
"embarkjs": "5.2.3",

View File

@ -4,7 +4,6 @@ import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import classnames from "classnames";
import './index.scss';
import FundingEscrow from "../../pages/Escrow/components/FundingEscrow";
const RoundedIcon = ({icon, image, imageComponent, text, bgColor, size, className, onClick}) => {
let sizePx;
@ -32,7 +31,7 @@ const RoundedIcon = ({icon, image, imageComponent, text, bgColor, size, classNam
</span>);
};
FundingEscrow.defaultProps = {
RoundedIcon.defaultProps = {
size: 'lg'
};