Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ĞMixer-py
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Pascal Engélibert
ĞMixer-py
Commits
87fcbb86
Commit
87fcbb86
authored
5 years ago
by
Pascal Engélibert
Browse files
Options
Downloads
Patches
Plain Diff
Standardize function names
parent
bb015a71
No related branches found
No related tags found
No related merge requests found
Pipeline
#5634
passed
5 years ago
Stage: deploy
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
client.py
+5
-5
5 additions, 5 deletions
client.py
server.py
+86
-86
86 additions, 86 deletions
server.py
utils.py
+4
-4
4 additions, 4 deletions
utils.py
with
95 additions
and
95 deletions
client.py
+
5
−
5
View file @
87fcbb86
...
@@ -253,17 +253,17 @@ def mix(db_txs, amount, base, sender, path, host, proxy=None, proxy_onion_only=F
...
@@ -253,17 +253,17 @@ def mix(db_txs, amount, base, sender, path, host, proxy=None, proxy_onion_only=F
if
send_tx
:
if
send_tx
:
try
:
try
:
send
T
ransaction
(
sender
,
path
[
0
],
amount
,
gen_comment
(
comment_seeds
[
0
]))
send
_t
ransaction
(
sender
,
path
[
0
],
amount
,
gen_comment
(
comment_seeds
[
0
]))
message
[
"
sent
"
]
=
True
message
[
"
sent
"
]
=
True
db_txs
.
put
(
comment_seeds
[
0
][
1
],
PublicKey
(
sender
.
pubkey
).
encrypt_seal
(
ubjson
.
dumpb
(
message
)))
db_txs
.
put
(
comment_seeds
[
0
][
1
],
PublicKey
(
sender
.
pubkey
).
encrypt_seal
(
ubjson
.
dumpb
(
message
)))
except
socket
.
timeout
:
except
socket
.
timeout
:
log
P
rint
(
"
Error when sending tx: timeout
"
,
LOG_ERROR
)
log
p
rint
(
"
Error when sending tx: timeout
"
,
LOG_ERROR
)
except
Exception
as
e
:
except
Exception
as
e
:
log
P
rint
(
"
Error when sending tx:
"
+
str
(
e
),
LOG_ERROR
)
log
p
rint
(
"
Error when sending tx:
"
+
str
(
e
),
LOG_ERROR
)
return
return
async
def
test1
(
db_txs
,
host
,
receiver
,
amount
=
1000
,
layers
=
3
,
proxy
=
None
,
proxy_onion_only
=
False
,
send_tx
=
True
):
async
def
main
(
db_txs
,
host
,
receiver
,
amount
=
1000
,
layers
=
3
,
proxy
=
None
,
proxy_onion_only
=
False
,
send_tx
=
True
):
if
amount
<
100
:
if
amount
<
100
:
print
(
"
!! Warning !!
\n
You are going to send less than 1.00, all this money will be destroyed by Duniter.
\n
Please always send 1.00 or more.
"
)
print
(
"
!! Warning !!
\n
You are going to send less than 1.00, all this money will be destroyed by Duniter.
\n
Please always send 1.00 or more.
"
)
if
input
(
"
Do it anyway? [yn]:
"
).
lower
()
!=
"
y
"
:
if
input
(
"
Do it anyway? [yn]:
"
).
lower
()
!=
"
y
"
:
...
@@ -337,4 +337,4 @@ python3 client.py -h svetsae7j3usrycn.onion 10951 -r 78ZwwgpgdH5uLZLbThUQH7LKwPg
...
@@ -337,4 +337,4 @@ python3 client.py -h svetsae7j3usrycn.onion 10951 -r 78ZwwgpgdH5uLZLbThUQH7LKwPg
db_txs
=
plyvel
.
DB
(
DIR
+
"
/client_db_txs
"
,
create_if_missing
=
True
)
db_txs
=
plyvel
.
DB
(
DIR
+
"
/client_db_txs
"
,
create_if_missing
=
True
)
asyncio
.
get_event_loop
().
run_until_complete
(
test1
(
db_txs
,
(
host
,
port
),
receiver
,
amount
,
layers
,
proxy
,
proxy_onion_only
,
send_tx
))
asyncio
.
get_event_loop
().
run_until_complete
(
main
(
db_txs
,
(
host
,
port
),
receiver
,
amount
,
layers
,
proxy
,
proxy_onion_only
,
send_tx
))
This diff is collapsed.
Click to expand it.
server.py
+
86
−
86
View file @
87fcbb86
This diff is collapsed.
Click to expand it.
utils.py
+
4
−
4
View file @
87fcbb86
...
@@ -109,7 +109,7 @@ LOG_ERROR = 8
...
@@ -109,7 +109,7 @@ LOG_ERROR = 8
LOGMSG_TYPES
=
{
LOG_INFO
:
"
\033
[96minfo
\033
[0m
"
,
LOG_TRACE
:
"
\033
[39mtrace
\033
[0m
"
,
LOG_WARN
:
"
\033
[93mwarn
\033
[0m
"
,
LOG_ERROR
:
"
\033
[91merror
\033
[0m
"
}
LOGMSG_TYPES
=
{
LOG_INFO
:
"
\033
[96minfo
\033
[0m
"
,
LOG_TRACE
:
"
\033
[39mtrace
\033
[0m
"
,
LOG_WARN
:
"
\033
[93mwarn
\033
[0m
"
,
LOG_ERROR
:
"
\033
[91merror
\033
[0m
"
}
VERBOSITY
=
LOG_INFO
|
LOG_WARN
|
LOG_ERROR
VERBOSITY
=
LOG_INFO
|
LOG_WARN
|
LOG_ERROR
def
log
P
rint
(
msg
:
str
,
msgtype
:
int
):
def
log
p
rint
(
msg
:
str
,
msgtype
:
int
):
if
msgtype
&
VERBOSITY
:
if
msgtype
&
VERBOSITY
:
print
(
time
.
strftime
(
"
%Y-%m-%d %H:%M:%S
"
)
+
"
[
"
+
LOGMSG_TYPES
[
msgtype
]
+
"
]
"
+
msg
)
print
(
time
.
strftime
(
"
%Y-%m-%d %H:%M:%S
"
)
+
"
[
"
+
LOGMSG_TYPES
[
msgtype
]
+
"
]
"
+
msg
)
...
@@ -138,7 +138,7 @@ class Peer:
...
@@ -138,7 +138,7 @@ class Peer:
return
self
.
pubkey
+
"
"
+
self
.
host
+
"
"
+
str
(
self
.
port
)
return
self
.
pubkey
+
"
"
+
self
.
host
+
"
"
+
str
(
self
.
port
)
# Read peers list
# Read peers list
def
read
P
eers
(
cdir
:
str
)
->
(
list
,
dict
):
def
read
_p
eers
(
cdir
:
str
)
->
(
list
,
dict
):
if
not
os
.
path
.
isfile
(
cdir
+
"
/peers
"
):
if
not
os
.
path
.
isfile
(
cdir
+
"
/peers
"
):
open
(
cdir
+
"
/peers
"
,
"
w
"
).
close
()
open
(
cdir
+
"
/peers
"
,
"
w
"
).
close
()
...
@@ -158,13 +158,13 @@ def readPeers(cdir:str) -> (list, dict):
...
@@ -158,13 +158,13 @@ def readPeers(cdir:str) -> (list, dict):
return
peers
,
peers_index
return
peers
,
peers_index
# Save peers list
# Save peers list
def
write
P
eers
(
cdir
:
str
,
peers
:
list
):
def
write
_p
eers
(
cdir
:
str
,
peers
:
list
):
peersfile
=
open
(
cdir
+
"
/peers
"
,
"
w
"
)
peersfile
=
open
(
cdir
+
"
/peers
"
,
"
w
"
)
for
peer
in
peers
:
for
peer
in
peers
:
peersfile
.
write
(
peer
.
export_str
()
+
"
\n
"
)
peersfile
.
write
(
peer
.
export_str
()
+
"
\n
"
)
peersfile
.
close
()
peersfile
.
close
()
def
send
T
ransaction
(
sender_keys
:
SigningKey
,
receiver_pubkey
:
str
,
amount
:
int
,
comment
:
str
):
def
send
_t
ransaction
(
sender_keys
:
SigningKey
,
receiver_pubkey
:
str
,
amount
:
int
,
comment
:
str
):
sender_amount
=
silkaj
.
money
.
get_amount_from_pubkey
(
sender_keys
.
pubkey
)[
0
]
sender_amount
=
silkaj
.
money
.
get_amount_from_pubkey
(
sender_keys
.
pubkey
)[
0
]
assert
sender_amount
>=
amount
,
"
not enough money
"
assert
sender_amount
>=
amount
,
"
not enough money
"
...
...
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