Skip to content

Commit

Permalink
Fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
aopoltorzhicky committed May 1, 2022
1 parent 598c0ed commit 140fbbd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/metadata/tzkt/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package tzkt

import (
"context"
"encoding/json"
"fmt"
"strings"
"sync"
Expand Down Expand Up @@ -296,7 +295,7 @@ func (scanner *Scanner) handleBigMaps(msg events.Message) error {
if body[i].Content != nil {
diffs[i].Content = &api.BigMapUpdateContent{
Hash: body[i].Content.Hash,
Key: json.RawMessage(body[i].Content.Key),
Key: body[i].Content.Key,
Value: body[i].Content.Value,
}
}
Expand Down

0 comments on commit 140fbbd

Please sign in to comment.