Moves weights to be a string as tags can only contain strings

This commit is contained in:
Vitor Pamplona 2023-05-24 09:46:36 -04:00
parent dd5c9c54ae
commit 7c3e590247

6
57.md
View File

@ -173,9 +173,9 @@ When an event includes one or more `zap` tags, clients SHOULD calculate the lnur
```json
{
"tags": [
[ "zap", "LNURL..", "lud06", 10 ], // 10%
[ "zap", "pablo@f7z.io", "lud16", 65 ], // 65%
[ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", 25 ] // 25%
[ "zap", "LNURL..", "lud06", "10" ], // 10%
[ "zap", "pablo@f7z.io", "lud16", "65" ], // 65%
[ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", "25" ] // 25%
]
}
```