From d848585b7cec388fca7870e52c5eaa5ae7cf4f36 Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 20 Aug 2024 09:28:02 +0200 Subject: [PATCH] id on peer --- static/peer_static.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/peer_static.go b/static/peer_static.go index 479f203..e50a1d1 100644 --- a/static/peer_static.go +++ b/static/peer_static.go @@ -3,7 +3,7 @@ package static func GetMyLocalBsonPeer() (string, map[string]interface{}) { return "6fd0134c-fefc-427e-94c2-e01365fc5fb0", map[string]interface{}{ "abstractobject": map[string]interface{}{ - "uuid": "6fd0134c-fefc-427e-94c2-e01365fc5fb0", + "id": "6fd0134c-fefc-427e-94c2-e01365fc5fb0", "name": "local_peer", }, "url": "http://localhost", @@ -13,7 +13,7 @@ func GetMyLocalBsonPeer() (string, map[string]interface{}) { func GetMyLocalJsonPeer() (string, map[string]interface{}) { return "6fd0134c-fefc-427e-94c2-e01365fc5fb0", map[string]interface{}{ - "uuid": "6fd0134c-fefc-427e-94c2-e01365fc5fb0", + "id": "6fd0134c-fefc-427e-94c2-e01365fc5fb0", "name": "local_peer", "url": "http://localhost", "public_key": "public_key_lulz",