Merge pull request #3648 from bas-vk/abigen

cmd/abigen: parse contract name as abi identifier
This commit is contained in:
Péter Szilágyi 2017-02-10 12:11:43 +02:00 committed by GitHub
commit 0cc9409fda
1 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,9 @@ func main() {
abi, _ := json.Marshal(contract.Info.AbiDefinition) // Flatten the compiler parse
abis = append(abis, string(abi))
bins = append(bins, contract.Code)
types = append(types, name)
nameParts := strings.Split(name, ":")
types = append(types, nameParts[len(nameParts)-1])
}
} else {
// Otherwise load up the ABI, optional bytecode and type name from the parameters