aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/args_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-27 00:27:29 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-27 00:27:29 +0800
commit6661bc35efc9c5d5a874e42558d568d9aa183fee (patch)
treebe70091cea5dbaa0d14095f99274b5018bb5d32b /rpc/args_test.go
parent745dd5b7a517cf0930f96a9b162821d0d631dea9 (diff)
downloadgo-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar.gz
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar.bz2
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar.lz
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar.xz
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.tar.zst
go-tangerine-6661bc35efc9c5d5a874e42558d568d9aa183fee.zip
Accept number or string for BlockFilterArgs to/fromBlock
Diffstat (limited to 'rpc/args_test.go')
-rw-r--r--rpc/args_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/rpc/args_test.go b/rpc/args_test.go
index 0c7360c53..2622891b9 100644
--- a/rpc/args_test.go
+++ b/rpc/args_test.go
@@ -759,10 +759,10 @@ func TestBlockFilterArgsWords(t *testing.T) {
}
}
-func TestBlockFilterArgsNums(t *testing.T) {
+func TestBlockFilterArgsBool(t *testing.T) {
input := `[{
- "fromBlock": 2,
- "toBlock": 3
+ "fromBlock": true,
+ "toBlock": false
}]`
args := new(BlockFilterArgs)