rpc: add ability to answer as C# with block as []byte

This commit is contained in:
Vsevolod Brekelov 2019-12-24 23:01:16 +03:00
parent 7f1844a39e
commit 606616618f
2 changed files with 9 additions and 2 deletions

View file

@ -152,7 +152,14 @@ Methods:
break
}
results = wrappers.NewBlock(block, s.chain)
if len(reqParams) == 2 && reqParams[1].Value == 1 {
results = wrappers.NewBlock(block, s.chain)
} else {
writer := io.NewBufBinWriter()
block.EncodeBinary(writer.BinWriter)
results = hex.EncodeToString(writer.Bytes())
}
case "getblockcount":
getblockcountCalled.Inc()
results = s.chain.BlockHeight() + 1

View file

@ -108,7 +108,7 @@ var rpcTestCases = map[string][]rpcTestCase{
"getblock": {
{
name: "positive",
params: "[1]",
params: "[1, 1]",
result: func(e *executor) interface{} { return &GetBlockResponse{} },
check: func(t *testing.T, e *executor, result interface{}) {
res, ok := result.(*GetBlockResponse)