From 14f9b244330db83253e3d9b0cb3c442208f8dfb7 Mon Sep 17 00:00:00 2001 From: Ev Date: Thu, 31 Oct 2019 16:21:19 -0400 Subject: [PATCH] Fix: double curly braces causes syntax error on Liquid template system (#2340) --- EIPS/eip-225.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/EIPS/eip-225.md b/EIPS/eip-225.md index f224cb96..a1630f29 100644 --- a/EIPS/eip-225.md +++ b/EIPS/eip-225.md @@ -211,7 +211,9 @@ tests := []struct { { // Single signer, no votes cast signers: []string{"A"}, - blocks: []block{{signer: "A"}}, + blocks: []block{ + {signer: "A"} + }, results: []string{"A"}, }, { // Single signer, voting to add two others (only accept first, second needs 2 votes)