rpcsrv: use valid stateroot hash in failing tests
Just in case.
This commit is contained in:
parent
9718602ce3
commit
e780037cb4
1 changed files with 4 additions and 4 deletions
|
@ -472,22 +472,22 @@ var rpcTestCases = map[string][]rpcTestCase{
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "invalid contract",
|
name: "invalid contract",
|
||||||
params: `["0000000000000000000000000000000000000000000000000000000000000000", "0xabcdef"]`,
|
params: `["` + block20StateRootLE + `", "0xabcdef"]`,
|
||||||
fail: true,
|
fail: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "invalid prefix",
|
name: "invalid prefix",
|
||||||
params: `["0000000000000000000000000000000000000000000000000000000000000000", "` + testContractHash + `", "notabase64%"]`,
|
params: `["` + block20StateRootLE + `", "` + testContractHash + `", "notabase64%"]`,
|
||||||
fail: true,
|
fail: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "invalid key",
|
name: "invalid key",
|
||||||
params: `["0000000000000000000000000000000000000000000000000000000000000000", "` + testContractHash + `", "QQ==", "notabase64%"]`,
|
params: `["` + block20StateRootLE + `", "` + testContractHash + `", "QQ==", "notabase64%"]`,
|
||||||
fail: true,
|
fail: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "unknown contract/large count",
|
name: "unknown contract/large count",
|
||||||
params: `["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000", "QQ==", "QQ==", 101]`,
|
params: `["` + block20StateRootLE + `", "0000000000000000000000000000000000000000", "QQ==", "QQ==", 101]`,
|
||||||
fail: true,
|
fail: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue