mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-10-10 03:12:32 +02:00
printed the events whose parents are not known, so that they are printed with a dummy event as parent
This commit is contained in:
@@ -9,8 +9,8 @@ EventData exampleEdataChild = EventData("id2", "pubkey", 1111111, 1, "content ch
|
||||
Event exampleEvent = Event('event', 'id3', exampleEdata, ['relay name'], "[json]");
|
||||
Event exampleEventChild = Event('event', 'id4', exampleEdataChild, ['relay name'], "[json]");
|
||||
|
||||
Tree exampleNode = Tree(exampleEvent, [], {});
|
||||
Tree exampleNodeChild = Tree(exampleEventChild, [], {});
|
||||
Tree exampleNode = Tree(exampleEvent, [], {}, []);
|
||||
Tree exampleNodeChild = Tree(exampleEventChild, [], {}, []);
|
||||
|
||||
void main() {
|
||||
test('PrintEmptyEvent', () {
|
||||
|
Reference in New Issue
Block a user