core/types: using maps.Clone

This commit is contained in:
cuiweixie 2024-03-29 17:32:30 +08:00
parent a3829178af
commit a51ff8437f

View file

@ -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 != "" {