Skip to content

Commit 98915f7

Browse files
committed
fix local-da
1 parent 9db6608 commit 98915f7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

da/cmd/local-da/local.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"crypto/rand"
88
"crypto/sha256"
99
"encoding/binary"
10+
"encoding/hex"
1011
"errors"
1112
"fmt"
1213
"sync"
@@ -189,7 +190,7 @@ func (d *LocalDA) SubmitWithOptions(ctx context.Context, blobs []coreda.Blob, ga
189190
d.logger.Error().Err(err).Msg("SubmitWithOptions: invalid namespace")
190191
return nil, err
191192
}
192-
d.logger.Info().Int("numBlobs", len(blobs)).Float64("gasPrice", gasPrice).Str("namespace", string(ns)).Msg("SubmitWithOptions called")
193+
d.logger.Info().Int("numBlobs", len(blobs)).Float64("gasPrice", gasPrice).Str("namespace", hex.EncodeToString(ns)).Msg("SubmitWithOptions called")
193194

194195
// Validate blob sizes before processing
195196
for i, blob := range blobs {

0 commit comments

Comments
 (0)