Source Code
(define-map invoices uint bool)
(define-public (pay (invoice-id uint))
(begin
(map-set invoices invoice-id true)
(ok invoice-id)
)
)
Functions (1)
| Function | Access | Args |
|---|---|---|
| pay | public | invoice-id: uint |
(define-map invoices uint bool)
(define-public (pay (invoice-id uint))
(begin
(map-set invoices invoice-id true)
(ok invoice-id)
)
)
| Function | Access | Args |
|---|---|---|
| pay | public | invoice-id: uint |