Skip to content

Commit d4a37d9

Browse files
committed
chore: make format golines
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 51e025f commit d4a37d9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

internal/utxorpc/query.go

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,15 @@ func (s *queryServiceServer) SearchUtxos(
283283
if assetPattern != nil {
284284
assetFound := false
285285
for _, multiasset := range audc.Cardano.GetAssets() {
286-
if bytes.Equal(multiasset.GetPolicyId(), assetPattern.GetPolicyId()) {
286+
if bytes.Equal(
287+
multiasset.GetPolicyId(),
288+
assetPattern.GetPolicyId(),
289+
) {
287290
for _, asset := range multiasset.GetAssets() {
288-
if bytes.Equal(asset.GetName(), assetPattern.GetAssetName()) {
291+
if bytes.Equal(
292+
asset.GetName(),
293+
assetPattern.GetAssetName(),
294+
) {
289295
assetFound = true
290296
break
291297
}

0 commit comments

Comments
 (0)