good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
6f08e301
Commit
6f08e301
authored
Oct 21, 2014
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Reflect RPC changes
parent
6ea44c46
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
mist/assets/qml/webapp.qml
+359
-368
359 additions, 368 deletions
mist/assets/qml/webapp.qml
utils/cmd.go
+2
-2
2 additions, 2 deletions
utils/cmd.go
with
361 additions
and
370 deletions
mist/assets/qml/webapp.qml
+
359
−
368
View file @
6f08e301
...
...
@@ -7,9 +7,6 @@ import QtQuick.Layouts 1.0;
import
QtQuick
.
Window
2.1
;
import
Ethereum
1.0
import
"
../ext/qml_messaging.js
"
as
Messaging
//ApplicationWindow {
Rectangle
{
id
:
window
property
var
title
:
"
Browser
"
...
...
@@ -154,12 +151,6 @@ import "../ext/qml_messaging.js" as Messaging
webview
.
experimental
.
postMessage
(
JSON
.
stringify
(
data
))
}
onTitleChanged
:
{
var
data
=
Messaging
.
HandleMessage
(
title
);
if
(
data
)
{
sendMessage
(
data
)
}
}
experimental.preferences.javascriptEnabled
:
true
experimental.preferences.navigatorQtObjectEnabled
:
true
...
...
This diff is collapsed.
Click to expand it.
utils/cmd.go
+
2
−
2
View file @
6f08e301
...
...
@@ -19,9 +19,9 @@ import (
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethminer"
"github.com/ethereum/eth-go/ethpipe"
"github.com/ethereum/eth-go/ethrpc"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
"github.com/ethereum/eth-go/rpc"
)
var
logger
=
ethlog
.
NewLogger
(
"CLI"
)
...
...
@@ -244,7 +244,7 @@ func KeyTasks(keyManager *ethcrypto.KeyManager, KeyRing string, GenAddr bool, Se
func
StartRpc
(
ethereum
*
eth
.
Ethereum
,
RpcPort
int
)
{
var
err
error
ethereum
.
RpcServer
,
err
=
eth
rpc
.
NewJsonRpcServer
(
ethpipe
.
NewJSPipe
(
ethereum
),
RpcPort
)
ethereum
.
RpcServer
,
err
=
rpc
.
NewJsonRpcServer
(
ethpipe
.
NewJSPipe
(
ethereum
),
RpcPort
)
if
err
!=
nil
{
logger
.
Errorf
(
"Could not start RPC interface (port %v): %v"
,
RpcPort
,
err
)
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment