Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
ee967ed7
Commit
ee967ed7
authored
10 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Network tab
parent
41980ff2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cutecoin/gui/currency_tab.py
+7
-0
7 additions, 0 deletions
src/cutecoin/gui/currency_tab.py
with
7 additions
and
0 deletions
src/cutecoin/gui/currency_tab.py
+
7
−
0
View file @
ee967ed7
...
@@ -18,6 +18,7 @@ from ..gen_resources.currency_tab_uic import Ui_CurrencyTabWidget
...
@@ -18,6 +18,7 @@ from ..gen_resources.currency_tab_uic import Ui_CurrencyTabWidget
from
.community_tab
import
CommunityTabWidget
from
.community_tab
import
CommunityTabWidget
from
.transfer
import
TransferMoneyDialog
from
.transfer
import
TransferMoneyDialog
from
.wallets_tab
import
WalletsTabWidget
from
.wallets_tab
import
WalletsTabWidget
from
.network_tab
import
NetworkTabWidget
from
..models.txhistory
import
HistoryTableModel
,
TxFilterProxyModel
from
..models.txhistory
import
HistoryTableModel
,
TxFilterProxyModel
from
.informations_tab
import
InformationsTabWidget
from
.informations_tab
import
InformationsTabWidget
from
..tools.exceptions
import
NoPeerAvailable
,
MembershipNotFoundError
from
..tools.exceptions
import
NoPeerAvailable
,
MembershipNotFoundError
...
@@ -83,6 +84,9 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
...
@@ -83,6 +84,9 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
self
.
tab_wallets
=
WalletsTabWidget
(
self
.
app
,
self
.
tab_wallets
=
WalletsTabWidget
(
self
.
app
,
self
.
app
.
current_account
,
self
.
app
.
current_account
,
self
.
community
)
self
.
community
)
self
.
tab_network
=
NetworkTabWidget
(
self
.
community
)
self
.
bc_watcher
=
BlockchainWatcher
(
self
.
app
.
current_account
,
self
.
bc_watcher
=
BlockchainWatcher
(
self
.
app
.
current_account
,
community
)
community
)
self
.
bc_watcher
.
new_block_mined
.
connect
(
self
.
refresh_block
)
self
.
bc_watcher
.
new_block_mined
.
connect
(
self
.
refresh_block
)
...
@@ -166,6 +170,9 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
...
@@ -166,6 +170,9 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
self
.
tabs_account
.
addTab
(
self
.
tab_informations
,
self
.
tabs_account
.
addTab
(
self
.
tab_informations
,
QIcon
(
'
:/icons/informations_icon
'
),
QIcon
(
'
:/icons/informations_icon
'
),
"
Informations
"
)
"
Informations
"
)
self
.
tab_network
=
NetworkTabWidget
(
self
.
community
)
self
.
tabs_account
.
addTab
(
self
.
tab_network
,
"
Network
"
)
self
.
tab_informations
.
refresh
()
self
.
tab_informations
.
refresh
()
blockid
=
self
.
community
.
current_blockid
()
blockid
=
self
.
community
.
current_blockid
()
block_number
=
blockid
[
'
number
'
]
block_number
=
blockid
[
'
number
'
]
...
...
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