@@ -12,7 +12,7 @@ import CompiledBinaries from '../../../compiled-binaries.md'
12
12
Mithril client library can be used by Rust developers to use the Mithril network in their applications.
13
13
14
14
It is responsible for handling the different types of data certified by Mithril, and available through a Mithril aggregator:
15
- - [ ** Snapshot** ] ( ../../../glossary.md#snapshot ) : list, get, download tarball and add statistics.
15
+ - [ ** Snapshot** ] ( ../../../glossary.md#snapshot ) : list, get, download tarball and record statistics.
16
16
- [ ** Mithril stake distribution** ] ( ../../../glossary.md#stake-distribution ) : list and get.
17
17
- [ ** Certificate** ] ( ../../../glossary.md#certificate ) : list, get, and chain validation.
18
18
@@ -90,7 +90,7 @@ async fn main() -> mithril_client::MithrilResult<()> {
90
90
. await ? ;
91
91
92
92
if let Err (e ) = client . snapshot (). add_statistics (& snapshot ). await {
93
- println! (" Could not POST snapshot download statistics: {:?}" , e );
93
+ println! (" Could not increment snapshot download statistics: {:?}" , e );
94
94
}
95
95
96
96
let message = MessageBuilder :: new ()
@@ -148,7 +148,7 @@ async fn main() -> mithril_client::MithrilResult<()> {
148
148
. await ? ;
149
149
150
150
if let Err (e ) = client . snapshot (). add_statistics (& snapshot ). await {
151
- println! (" Could not POST snapshot download statistics: {:?}" , e );
151
+ println! (" Could not increment snapshot download statistics: {:?}" , e );
152
152
}
153
153
154
154
let message = MessageBuilder :: new ()
0 commit comments