diff options
-rw-r--r-- | rpc/args_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/rpc/args_test.go b/rpc/args_test.go index dee72b86f..cb1d1904b 100644 --- a/rpc/args_test.go +++ b/rpc/args_test.go @@ -1680,3 +1680,12 @@ func TestSubmitWorkArgsDigestInt(t *testing.T) { t.Error(str) } } + +func TestBlockHeightFromJsonInvalid(t *testing.T) { + var num int64 + var msg json.RawMessage = []byte(`}{`) + str := ExpectDecodeParamError(blockHeightFromJson(msg, &num)) + if len(str) > 0 { + t.Error(str) + } +} |