Skip to content

Commit

Permalink
Merge pull request #37 from EOSIO/36-fix-parsing
Browse files Browse the repository at this point in the history
Fix for #36
  • Loading branch information
ericiles committed Jun 11, 2018
2 parents 49f05a0 + f881350 commit e811559
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion filter.go
Expand Up @@ -36,7 +36,6 @@ type Transaction struct {
RefBlockNum string `json:"ref_block_num"`
RefBlockPrefix string `json:"ref_block_prefix"`
Expiration string `json:"expiration"`
Scope []string `json:"scope"`
Actions []Action `json:"actions"`
Signatures []string `json:"signatures"`
Authorizations []interface{} `json:"authorizations"`
Expand Down
3 changes: 0 additions & 3 deletions filter_test.go
Expand Up @@ -149,7 +149,6 @@ func TestValidateContract(t *testing.T) {
RefBlockNum: "1",
RefBlockPrefix: "eos",
Expiration: "never",
Scope: []string{"testing"},
Actions: []Action{invalidAction},
Signatures: []string{"12345"},
Authorizations: []interface{}{"eosio"},
Expand Down Expand Up @@ -194,7 +193,6 @@ func TestValidateSignatures(t *testing.T) {
RefBlockNum: "1",
RefBlockPrefix: "eos",
Expiration: "never",
Scope: []string{"testing"},
Actions: []Action{
{
Code: "tokens",
Expand Down Expand Up @@ -254,7 +252,6 @@ func TestValidateTransactionSize(t *testing.T) {
RefBlockNum: "1",
RefBlockPrefix: "eos",
Expiration: "never",
Scope: []string{"testing"},
Actions: []Action{invalidAction},
Signatures: []string{"12345"},
Authorizations: []interface{}{"eosio"},
Expand Down

0 comments on commit e811559

Please sign in to comment.