This commit is contained in:
Alex T 2018-11-06 10:47:17 +02:00
parent 5a59cc0eea
commit 212b107860
2 changed files with 12 additions and 14 deletions

View file

@ -28,7 +28,6 @@ const methoddata = `
{ "type" : "function", "name" : "transfer", "constant" : false, "inputs" : [ { "name" : "from", "type" : "address" }, { "name" : "to", "type" : "address" }, { "name" : "value", "type" : "uint256" } ], "outputs" : [ { "name" : "success", "type" : "bool" } ] }
]`
func TestMethodString(t *testing.T) {
var table = []struct {
method string
@ -36,17 +35,16 @@ func TestMethodString(t *testing.T) {
}{
{
method: "balance",
expectation:"function balance() constant returns()",
expectation: "function balance() constant returns()",
},
{
method: "send",
expectation:"function send(uint256 amount) returns()",
expectation: "function send(uint256 amount) returns()",
},
{
method: "transfer",
expectation:"function transfer(address from, address to, uint256 value) returns(bool success)",
expectation: "function transfer(address from, address to, uint256 value) returns(bool success)",
},
}
abi, err := JSON(strings.NewReader(methoddata))