Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
c5fcbc3c
Commit
c5fcbc3c
authored
Aug 14, 2017
by
yann300
Committed by
GitHub
Aug 14, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #678 from ethereum/fixNoCompiledContract
Check if there are compiled contract before doing anything
parents
cb160c43
2dd82a3d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
compile-tab.js
src/app/tabs/compile-tab.js
+4
-0
run-tab.js
src/app/tabs/run-tab.js
+1
-1
No files found.
src/app/tabs/compile-tab.js
View file @
c5fcbc3c
...
...
@@ -286,6 +286,7 @@ function compileTab (container, appAPI, appEvents, opts) {
function
details
()
{
var
select
=
el
.
querySelector
(
'select'
)
if
(
select
.
children
.
length
>
0
&&
select
.
selectedIndex
>=
0
)
{
var
contractName
=
select
.
children
[
select
.
selectedIndex
].
innerText
var
details
=
contractsDetails
[
contractName
]
var
keys
=
Object
.
keys
(
contractsDetails
[
contractName
])
...
...
@@ -296,9 +297,11 @@ function compileTab (container, appAPI, appEvents, opts) {
})
modalDialog
(
contractName
,
log
,
{
label
:
'OK'
},
{
label
:
''
})
}
}
function
publish
(
appAPI
)
{
var
selectContractNames
=
document
.
querySelector
(
`.
${
css
.
contractNames
.
classNames
[
0
]}
`
)
if
(
selectContractNames
.
children
.
length
>
0
&&
selectContractNames
.
selectedIndex
>=
0
)
{
var
contract
=
contractsDetails
[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
publishOnSwarm
(
contract
,
appAPI
,
function
(
err
)
{
if
(
err
)
{
...
...
@@ -308,6 +311,7 @@ function compileTab (container, appAPI, appEvents, opts) {
}
})
}
}
return
el
}
}
src/app/tabs/run-tab.js
View file @
c5fcbc3c
...
...
@@ -231,7 +231,7 @@ function contractDropdown (appAPI, appEvents, instanceContainer) {
function
setInputParamsPlaceHolder
()
{
createButtonInput
.
value
=
''
if
(
appAPI
.
getContracts
())
{
if
(
appAPI
.
getContracts
()
&&
selectContractNames
.
selectedIndex
>=
0
&&
selectContractNames
.
children
.
length
>
0
)
{
var
contract
=
appAPI
.
getContracts
()[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
var
ctrabi
=
txHelper
.
getConstructorInterface
(
contract
.
interface
)
if
(
ctrabi
.
inputs
.
length
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment