zold 0.26.18 → 0.26.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/zold/commands/merge.rb +10 -4
- data/lib/zold/node/front.rb +3 -1
- data/lib/zold/node/journaled_pipeline.rb +2 -0
- data/lib/zold/version.rb +1 -1
- data/test/node/fake_node.rb +1 -1
- data/views/journal.haml +6 -1
- data/views/layout.haml +30 -8
- data/views/wallet.haml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fa341a547ba1c83699a076f78886ea6cd3f28c2dca5b46675e214f4ee155fc3
|
4
|
+
data.tar.gz: 4570c47941b0522ceebb915620c016c7aa239984d1510f2219631a35d76a655b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d818d6a9e3bbcc5ad446de965d70ffe72ecd9f78d9c04e49fe0d547a2be9c148cff3e5c9381ba37888bc6562e43e95b7c928b997622ace8a1dbaad9876438715
|
7
|
+
data.tar.gz: 792d5b93d848ee5d8685a9f4242c99b5753abb21c5071684a98069ca5570adf61470ef9117fdb3a37f7df335b9d2ee9222821430043ac2490cd1733bbe262b56
|
data/lib/zold/commands/merge.rb
CHANGED
@@ -74,6 +74,9 @@ Available options:"
|
|
74
74
|
o.string '--ledger',
|
75
75
|
'The name of the file where all new negative transactions will be recorded (default: /dev/null)',
|
76
76
|
default: '/dev/null'
|
77
|
+
o.array '--trusted',
|
78
|
+
'List of wallet IDs we fully trust and won\'t pull',
|
79
|
+
default: []
|
77
80
|
o.string '--network',
|
78
81
|
'The name of the network we work in',
|
79
82
|
default: 'test'
|
@@ -151,10 +154,13 @@ into #{@wallets.acq(id, &:mnemo)} in #{Age.new(start, limit: 0.1 + cps.count * 0
|
|
151
154
|
end
|
152
155
|
else
|
153
156
|
patch.join(wallet, ledger: opts['ledger']) do |txn|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
157
|
+
unless opts['trusted'].include?(txn.bnf.to_s) || opts['trusted'].count > 32
|
158
|
+
Pull.new(wallets: @wallets, remotes: @remotes, copies: @copies, log: @log).run(
|
159
|
+
['pull', txn.bnf.to_s, "--network=#{opts['network']}", '--quiet-if-absent'] +
|
160
|
+
(opts['deep'] ? ['--deep'] : ['--shallow']) +
|
161
|
+
['--trusted=' + (opts['trusted'] + [txn.bnf.to_s]).join(',')]
|
162
|
+
)
|
163
|
+
end
|
158
164
|
true
|
159
165
|
end
|
160
166
|
end
|
data/lib/zold/node/front.rb
CHANGED
@@ -479,7 +479,9 @@ this is not a normal behavior, you may want to report a bug to our GitHub reposi
|
|
479
479
|
|
480
480
|
get '/journal/item' do
|
481
481
|
content_type('text/plain')
|
482
|
-
|
482
|
+
file = File.join(settings.journal_dir, params[:id])
|
483
|
+
error(404, "Journal item not found at #{file}") unless File.exist?(file)
|
484
|
+
IO.read(file)
|
483
485
|
end
|
484
486
|
|
485
487
|
not_found do
|
@@ -84,6 +84,8 @@ module Zold
|
|
84
84
|
jlog.level = Logger::DEBUG
|
85
85
|
jlog.formatter = Log::COMPACT
|
86
86
|
jlog.info("push(#{id}, #{body.length} bytes): starting...")
|
87
|
+
jlog.info("Time: #{Time.now.utc.iso8601}")
|
88
|
+
jlog.info("Zold gem version: #{Zold::VERSION}")
|
87
89
|
modified = @pipeline.push(id, body, JournaledPipeline::Wallets.new(wallets, jlog), Log::Tee.new(log, jlog))
|
88
90
|
jlog.info("push(#{id}): done")
|
89
91
|
modified
|
data/lib/zold/version.rb
CHANGED
data/test/node/fake_node.rb
CHANGED
data/views/journal.haml
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
Showing only wallet
|
4
4
|
%code= id
|
5
5
|
|
6
|
+
%p
|
7
|
+
= files.count
|
8
|
+
PUSH operation(s) over the last 24 hours:
|
9
|
+
|
6
10
|
%table
|
7
11
|
%thead
|
8
12
|
%tr
|
@@ -14,6 +18,7 @@
|
|
14
18
|
- file = File.join(dir, f)
|
15
19
|
%tr
|
16
20
|
%td
|
17
|
-
%a{href:
|
21
|
+
%a{href: "/journal/item?id=#{f}"}<
|
22
|
+
%code= f
|
18
23
|
%td.right= Zold::Size.new(File.size(file))
|
19
24
|
%td= "#{Zold::Age.new(File.mtime(file))} ago"
|
data/views/layout.haml
CHANGED
@@ -21,12 +21,34 @@
|
|
21
21
|
%meta{name: 'twitter:image:alt', content: 'Zold'}
|
22
22
|
%body
|
23
23
|
%section
|
24
|
-
%
|
25
|
-
%
|
26
|
-
%
|
24
|
+
%header
|
25
|
+
%nav
|
26
|
+
%li
|
27
|
+
%a{href: '/'}
|
28
|
+
%img.logo{src: '//www.zold.io/images/logo.svg', alt: 'Zold logo'}
|
29
|
+
%nav
|
30
|
+
%li
|
31
|
+
%a{href: '/'} Home
|
32
|
+
%li
|
33
|
+
%a{href: '/queue'} Queue
|
34
|
+
%li
|
35
|
+
%a{href: '/remotes'} Remotes
|
36
|
+
%li
|
37
|
+
%a{href: '/threads'} Threads
|
38
|
+
%li
|
39
|
+
%a{href: '/wallets'} Wallets
|
40
|
+
%li
|
41
|
+
%a{href: '/ledger'} Ledger
|
42
|
+
%li
|
43
|
+
%a{href: '/journal'} Journal
|
44
|
+
%li
|
45
|
+
%a{href: '/farm'} Farm
|
46
|
+
%li
|
47
|
+
%a{href: '/metronome'} Metronome
|
27
48
|
= yield
|
28
|
-
%
|
29
|
-
|
30
|
-
|
31
|
-
%
|
32
|
-
%
|
49
|
+
%footer
|
50
|
+
%p.footnotes
|
51
|
+
= Zold::VERSION
|
52
|
+
%p
|
53
|
+
%a{href: 'https://github.com/zold-io/zold/stargazers'}
|
54
|
+
%img{src: '//img.shields.io/github/stars/zold-io/zold.svg?style=flat-square', alt: 'GitHub stars'}
|
data/views/wallet.haml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
@@ -798,7 +798,7 @@ licenses:
|
|
798
798
|
- MIT
|
799
799
|
metadata: {}
|
800
800
|
post_install_message: |-
|
801
|
-
Thanks for installing Zold 0.26.
|
801
|
+
Thanks for installing Zold 0.26.19!
|
802
802
|
Study our White Paper: https://papers.zold.io/wp.pdf
|
803
803
|
Read our blog posts: https://blog.zold.io
|
804
804
|
Try ZLD online wallet at: https://wts.zold.io
|