diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-04-01 19:18:30 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-04-01 19:18:30 +0800 |
commit | 88f2a96ca3224bf59cf5639ffc4efabe2fe1f87b (patch) | |
tree | fd01d8ab56cbcb97882a36bd81f180ce55a674d7 /rpc/responses_test.go | |
parent | dba9b83aa07ced653b24c3e34d55ffe13a740243 (diff) | |
download | go-tangerine-88f2a96ca3224bf59cf5639ffc4efabe2fe1f87b.tar.gz go-tangerine-88f2a96ca3224bf59cf5639ffc4efabe2fe1f87b.tar.zst go-tangerine-88f2a96ca3224bf59cf5639ffc4efabe2fe1f87b.zip |
Set fullTx option in constructor
Diffstat (limited to 'rpc/responses_test.go')
-rw-r--r-- | rpc/responses_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/responses_test.go b/rpc/responses_test.go index 5c6c6a895..43924151a 100644 --- a/rpc/responses_test.go +++ b/rpc/responses_test.go @@ -49,7 +49,7 @@ func TestNewBlockRes(t *testing.T) { "timestamp": reNum, } - v := NewBlockRes(block) + v := NewBlockRes(block, false) j, _ := json.Marshal(v) for k, re := range tests { |