Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API: Add types for ledgercore.StateDelta. #467

Merged
merged 16 commits into from
Feb 28, 2023
2 changes: 1 addition & 1 deletion encoding/json/json_test.go
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ func TestDecode(t *testing.T) {
assert.NotContains(t, data, "0:")
})

t.Run("strict encode map key as string", func(t *testing.T) {
t.Run("strict encode map interface key as string", func(t *testing.T) {
t.Skip("There is a bug in go-codec with MapKeyAsString = true and Canonical = true")
intMap := map[interface{}]interface{}{
0: "int key",