diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-22 21:02:03 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-22 21:02:03 +0000 |
| commit | 1df90c609399c675e629b97294aee81a0b1e66dd (patch) | |
| tree | 8482cdd0ea87cc0df5a86672bf99399aa0aa1a3d /grasp-audit/src/specs/grasp01/nip01_smoke.rs | |
| parent | 5d3d96c7f0397a079384b7291ff21df76029b126 (diff) | |
chore: bump rust-nostr to latest master
so we can more easily support grasp purgatory feature
Diffstat (limited to 'grasp-audit/src/specs/grasp01/nip01_smoke.rs')
| -rw-r--r-- | grasp-audit/src/specs/grasp01/nip01_smoke.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grasp-audit/src/specs/grasp01/nip01_smoke.rs b/grasp-audit/src/specs/grasp01/nip01_smoke.rs index 4dbcd3d..bd45ea4 100644 --- a/grasp-audit/src/specs/grasp01/nip01_smoke.rs +++ b/grasp-audit/src/specs/grasp01/nip01_smoke.rs | |||
| @@ -216,7 +216,7 @@ impl Nip01SmokeTests { | |||
| 216 | let invalid_event_json = serde_json::json!({ | 216 | let invalid_event_json = serde_json::json!({ |
| 217 | "id": event.id.to_hex(), | 217 | "id": event.id.to_hex(), |
| 218 | "pubkey": event.pubkey.to_hex(), | 218 | "pubkey": event.pubkey.to_hex(), |
| 219 | "created_at": event.created_at.as_u64(), | 219 | "created_at": event.created_at.as_secs(), |
| 220 | "kind": event.kind.as_u16(), | 220 | "kind": event.kind.as_u16(), |
| 221 | "tags": event.tags, | 221 | "tags": event.tags, |
| 222 | "content": event.content, | 222 | "content": event.content, |
| @@ -261,7 +261,7 @@ impl Nip01SmokeTests { | |||
| 261 | let invalid_event_json = serde_json::json!({ | 261 | let invalid_event_json = serde_json::json!({ |
| 262 | "id": EventId::all_zeros().to_hex(), // Wrong ID! | 262 | "id": EventId::all_zeros().to_hex(), // Wrong ID! |
| 263 | "pubkey": event.pubkey.to_hex(), | 263 | "pubkey": event.pubkey.to_hex(), |
| 264 | "created_at": event.created_at.as_u64(), | 264 | "created_at": event.created_at.as_secs(), |
| 265 | "kind": event.kind.as_u16(), | 265 | "kind": event.kind.as_u16(), |
| 266 | "tags": event.tags, | 266 | "tags": event.tags, |
| 267 | "content": event.content, | 267 | "content": event.content, |