Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #25 from geek96/master
Browse files Browse the repository at this point in the history
Not enough values to unpack (expected 4, got 2)
  • Loading branch information
localhuman committed Oct 11, 2017
2 parents 4b5da51 + 8652a32 commit 2d9c36d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neo/Prompt/Commands/Invoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ def test_invoke(script, wallet, outputs):
# tx.Gas = Fixed8.One()
# tx.Attributes = []
# return tx, []
return None,[]
return None,None, None, None

except Exception as e:
print("COULD NOT EXECUTE %s " % e)

return None,[]
return None,None, None, None



Expand Down

0 comments on commit 2d9c36d

Please sign in to comment.