File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
//! Data structures and encoding for `offer` messages.
11
11
//!
12
- //! An [`Offer`] is built by the merchant for the user-pays-merchants flow and may be parsed from a
13
- //! string by the user, typically after being scanned from a QR code.
12
+ //! An [`Offer`] represents an "offer to be paid". It is typically constructed by a merchant and
13
+ //! published as a QR code to be scanned by a customer. The customer uses the offer to request an
14
+ //! invoice from the merchant to be paid.
14
15
//!
15
16
//! ```
16
17
//! extern crate bitcoin;
@@ -68,7 +69,7 @@ use prelude::*;
68
69
#[ cfg( feature = "std" ) ]
69
70
use std:: time:: SystemTime ;
70
71
71
- /// Builds an [`Offer`] for the user-pays-merchant flow.
72
+ /// Builds an [`Offer`] for the "offer to be paid" flow.
72
73
///
73
74
/// See [module-level documentation] for usage.
74
75
///
You can’t perform that action at this time.
0 commit comments