mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
Merge branch 'ethereum:master' into master
This commit is contained in:
commit
8bfb1926fe
5 changed files with 158 additions and 4 deletions
2
go.mod
2
go.mod
|
|
@ -44,7 +44,7 @@ require (
|
|||
github.com/jackpal/go-nat-pmp v1.0.2
|
||||
github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e
|
||||
github.com/julienschmidt/httprouter v1.2.0
|
||||
github.com/karalabe/usb v0.0.0-20211005121534-4c5740d64559
|
||||
github.com/karalabe/usb v0.0.2
|
||||
github.com/kylelemons/godebug v1.1.0 // indirect
|
||||
github.com/mattn/go-colorable v0.1.8
|
||||
github.com/mattn/go-isatty v0.0.12
|
||||
|
|
|
|||
4
go.sum
4
go.sum
|
|
@ -265,8 +265,8 @@ github.com/julienschmidt/httprouter v1.2.0 h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+
|
|||
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
|
||||
github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes=
|
||||
github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0=
|
||||
github.com/karalabe/usb v0.0.0-20211005121534-4c5740d64559 h1:0VWDXPNE0brOek1Q8bLfzKkvOzwbQE/snjGojlCr8CY=
|
||||
github.com/karalabe/usb v0.0.0-20211005121534-4c5740d64559/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU=
|
||||
github.com/karalabe/usb v0.0.2 h1:M6QQBNxF+CQ8OFvxrT90BA0qBOXymndZnk5q235mFc4=
|
||||
github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU=
|
||||
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
|
||||
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
||||
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4=
|
||||
|
|
|
|||
|
|
@ -1134,6 +1134,9 @@ func (w *worker) commit(env *environment, interval func(), update bool, start ti
|
|||
if interval != nil {
|
||||
interval()
|
||||
}
|
||||
// Create a local environment copy, avoid the data race with snapshot state.
|
||||
// https://github.com/ethereum/go-ethereum/issues/24299
|
||||
env := env.copy()
|
||||
block, err := w.engine.FinalizeAndAssemble(w.chain, env.header, env.state, env.txs, env.unclelist(), env.receipts)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
|
|||
|
|
@ -262,6 +262,7 @@ func (typedData *TypedData) HashStruct(primaryType string, data TypedDataMessage
|
|||
|
||||
// Dependencies returns an array of custom types ordered by their hierarchical reference tree
|
||||
func (typedData *TypedData) Dependencies(primaryType string, found []string) []string {
|
||||
primaryType = strings.TrimSuffix(primaryType, "[]")
|
||||
includes := func(arr []string, str string) bool {
|
||||
for _, obj := range arr {
|
||||
if obj == str {
|
||||
|
|
@ -364,7 +365,7 @@ func (typedData *TypedData) EncodeData(primaryType string, data map[string]inter
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
arrayBuffer.Write(encodedData)
|
||||
arrayBuffer.Write(crypto.Keccak256(encodedData))
|
||||
} else {
|
||||
bytesValue, err := typedData.EncodePrimitiveValue(parsedType, item, depth)
|
||||
if err != nil {
|
||||
|
|
|
|||
|
|
@ -662,3 +662,153 @@ func TestGnosisCustomDataWithChainId(t *testing.T) {
|
|||
t.Fatalf("Error, got %x, wanted %x", sighash, expSigHash)
|
||||
}
|
||||
}
|
||||
|
||||
var complexTypedData = `
|
||||
{
|
||||
"types": {
|
||||
"EIP712Domain": [
|
||||
{
|
||||
"name": "chainId",
|
||||
"type": "uint256"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "verifyingContract",
|
||||
"type": "address"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"Action": [
|
||||
{
|
||||
"name": "action",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "params",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"Cell": [
|
||||
{
|
||||
"name": "capacity",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "lock",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "type",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "data",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "extraData",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"Transaction": [
|
||||
{
|
||||
"name": "DAS_MESSAGE",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "inputsCapacity",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "outputsCapacity",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "fee",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "action",
|
||||
"type": "Action"
|
||||
},
|
||||
{
|
||||
"name": "inputs",
|
||||
"type": "Cell[]"
|
||||
},
|
||||
{
|
||||
"name": "outputs",
|
||||
"type": "Cell[]"
|
||||
},
|
||||
{
|
||||
"name": "digest",
|
||||
"type": "bytes32"
|
||||
}
|
||||
]
|
||||
},
|
||||
"primaryType": "Transaction",
|
||||
"domain": {
|
||||
"chainId": "56",
|
||||
"name": "da.systems",
|
||||
"verifyingContract": "0x0000000000000000000000000000000020210722",
|
||||
"version": "1"
|
||||
},
|
||||
"message": {
|
||||
"DAS_MESSAGE": "SELL mobcion.bit FOR 100000 CKB",
|
||||
"inputsCapacity": "1216.9999 CKB",
|
||||
"outputsCapacity": "1216.9998 CKB",
|
||||
"fee": "0.0001 CKB",
|
||||
"digest": "0x53a6c0f19ec281604607f5d6817e442082ad1882bef0df64d84d3810dae561eb",
|
||||
"action": {
|
||||
"action": "start_account_sale",
|
||||
"params": "0x00"
|
||||
},
|
||||
"inputs": [
|
||||
{
|
||||
"capacity": "218 CKB",
|
||||
"lock": "das-lock,0x01,0x051c152f77f8efa9c7c6d181cc97ee67c165c506...",
|
||||
"type": "account-cell-type,0x01,0x",
|
||||
"data": "{ account: mobcion.bit, expired_at: 1670913958 }",
|
||||
"extraData": "{ status: 0, records_hash: 0x55478d76900611eb079b22088081124ed6c8bae21a05dd1a0d197efcc7c114ce }"
|
||||
}
|
||||
],
|
||||
"outputs": [
|
||||
{
|
||||
"capacity": "218 CKB",
|
||||
"lock": "das-lock,0x01,0x051c152f77f8efa9c7c6d181cc97ee67c165c506...",
|
||||
"type": "account-cell-type,0x01,0x",
|
||||
"data": "{ account: mobcion.bit, expired_at: 1670913958 }",
|
||||
"extraData": "{ status: 1, records_hash: 0x55478d76900611eb079b22088081124ed6c8bae21a05dd1a0d197efcc7c114ce }"
|
||||
},
|
||||
{
|
||||
"capacity": "201 CKB",
|
||||
"lock": "das-lock,0x01,0x051c152f77f8efa9c7c6d181cc97ee67c165c506...",
|
||||
"type": "account-sale-cell-type,0x01,0x",
|
||||
"data": "0x1209460ef3cb5f1c68ed2c43a3e020eec2d9de6e...",
|
||||
"extraData": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
func TestComplexTypedData(t *testing.T) {
|
||||
var td apitypes.TypedData
|
||||
err := json.Unmarshal([]byte(complexTypedData), &td)
|
||||
if err != nil {
|
||||
t.Fatalf("unmarshalling failed '%v'", err)
|
||||
}
|
||||
_, sighash, err := sign(td)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
expSigHash := common.FromHex("0x42b1aca82bb6900ff75e90a136de550a58f1a220a071704088eabd5e6ce20446")
|
||||
if !bytes.Equal(expSigHash, sighash) {
|
||||
t.Fatalf("Error, got %x, wanted %x", sighash, expSigHash)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue