diff options
| author | Vitor Pamplona <vitor@vitorpamplona.com> | 2023-05-24 09:46:36 -0400 |
|---|---|---|
| committer | Vitor Pamplona <vitor@vitorpamplona.com> | 2023-05-24 09:46:36 -0400 |
| commit | 7c3e5902471b2eccf8032c06ab4e07940dd56ae7 (patch) | |
| tree | 12da2e5d4d643a84166618d37020718e856e8cda /57.md | |
| parent | dd5c9c54ae33c0480b2f12b604353b738c827115 (diff) | |
Moves weights to be a string as tags can only contain strings
Diffstat (limited to '57.md')
| -rw-r--r-- | 57.md | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -173,9 +173,9 @@ When an event includes one or more `zap` tags, clients SHOULD calculate the lnur | |||
| 173 | ```json | 173 | ```json |
| 174 | { | 174 | { |
| 175 | "tags": [ | 175 | "tags": [ |
| 176 | [ "zap", "LNURL..", "lud06", 10 ], // 10% | 176 | [ "zap", "LNURL..", "lud06", "10" ], // 10% |
| 177 | [ "zap", "pablo@f7z.io", "lud16", 65 ], // 65% | 177 | [ "zap", "pablo@f7z.io", "lud16", "65" ], // 65% |
| 178 | [ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", 25 ] // 25% | 178 | [ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", "25" ] // 25% |
| 179 | ] | 179 | ] |
| 180 | } | 180 | } |
| 181 | ``` | 181 | ``` |