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
d885fba8
Commit
d885fba8
authored
Oct 06, 2015
by
d11e9
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove extranious console logs from universal-dapp
parent
e40fe963
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
universal-dapp.js
libs/universal-dapp.js
+0
-5
No files found.
libs/universal-dapp.js
View file @
d885fba8
...
...
@@ -252,7 +252,6 @@ UniversalDApp.prototype.getCallButton = function(args) {
function
testResult
(
err
,
address
)
{
if
(
!
err
&&
!
address
)
{
console
.
log
(
"Polling for tx receipt...."
)
setTimeout
(
function
(){
tryTillResponse
(
txhash
,
done
)
},
500
)
}
else
done
(
err
,
address
)
}
...
...
@@ -301,9 +300,6 @@ UniversalDApp.prototype.runTx = function( data, args, cb) {
var
to
=
args
.
address
;
var
constant
=
args
.
abi
.
constant
;
var
isConstructor
=
args
.
bytecode
!==
undefined
;
console
.
log
(
"runtx ("
+
args
.
abi
.
name
+
") data: "
,
data
)
console
.
log
(
"runtx ("
+
args
.
abi
.
name
+
") to:"
,
to
)
if
(
!
this
.
vm
)
{
if
(
constant
&&
!
isConstructor
)
{
...
...
@@ -316,7 +312,6 @@ UniversalDApp.prototype.runTx = function( data, args, cb) {
data
:
data
,
gas
:
1000000
},
function
(
err
,
resp
)
{
console
.
log
(
'sendTx callback:'
,
err
,
resp
)
cb
(
err
,
resp
)
})
}
...
...
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