We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0859a53 commit d10cdc7Copy full SHA for d10cdc7
1 file changed
message.go
@@ -23,7 +23,7 @@ import (
23
24
bin "github.com/gagliardetto/binary"
25
"github.com/gagliardetto/treeout"
26
- jsoniter "github.com/json-iterator/go"
+ gojson "github.com/goccy/go-json"
27
28
"github.com/gagliardetto/solana-go/text"
29
)
@@ -242,7 +242,7 @@ func (mx *Message) UnmarshalJSON(data []byte) error {
242
Header MessageHeader `json:"header"`
243
RecentBlockhash Hash `json:"recentBlockhash"`
244
Instructions []CompiledInstruction `json:"instructions"`
245
- AddressTableLookups *jsoniter.RawMessage `json:"addressTableLookups"`
+ AddressTableLookups *gojson.RawMessage `json:"addressTableLookups"`
246
}{}
247
if err := json.Unmarshal(data, &aux); err != nil {
248
return err
0 commit comments