diff options
author | Aaron Hill <aa1ronham@gmail.com> | 2018-03-11 16:23:10 -0400 |
---|---|---|
committer | Aaron Hill <aa1ronham@gmail.com> | 2018-03-11 16:23:10 -0400 |
commit | ee38933f7c60ef7abe714722d565435819f9aaf7 (patch) | |
tree | 1810634da538645aeac4488af5b0d453d5e918d9 /src | |
parent | 3471e04b9b28ded3d12ef31a2477a06ec71ae97e (diff) | |
download | roughenough-ee38933f7c60ef7abe714722d565435819f9aaf7.zip |
Update documentation for new batch_size option
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -34,6 +34,7 @@ //! interface: 127.0.0.1 //! port: 8686 //! seed: f61075c988feb9cb700a4a6a3291bfbc9cab11b9c9eca8c802468eb38a43d7d3 +//! batch_size: 64 //! ``` //! //! Where: @@ -43,6 +44,9 @@ //! * **seed** - A 32-byte hexadecimal value used as the seed to generate the //! server's long-term key pair. **This is a secret value**, treat it //! with care. +//! * **batch_size** - The number of requests to process in one batch. All nonces +//! in a batch are used to build a Merkle tree, the root of which +//! is signed. //! //! To run the server: //! |