core/types: using maps.Clone (#29398)

pull/29422/head
cui 7 months ago committed by GitHub
parent c39d00e316
commit 6c9f702982
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      core/types/transaction_test.go

@ -22,6 +22,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"maps"
"math/big" "math/big"
"reflect" "reflect"
"testing" "testing"
@ -515,10 +516,7 @@ func TestYParityJSONUnmarshalling(t *testing.T) {
test := test test := test
t.Run(fmt.Sprintf("txType=%d: %s", txType, test.name), func(t *testing.T) { t.Run(fmt.Sprintf("txType=%d: %s", txType, test.name), func(t *testing.T) {
// Copy the base json // Copy the base json
testJson := make(map[string]interface{}) testJson := maps.Clone(baseJson)
for k, v := range baseJson {
testJson[k] = v
}
// Set v, yParity and type // Set v, yParity and type
if test.v != "" { if test.v != "" {

Loading…
Cancel
Save