1. 25 May, 2016 4 commits
  2. 24 May, 2016 2 commits
  3. 23 May, 2016 5 commits
  4. 22 May, 2016 1 commit
  5. 20 May, 2016 5 commits
  6. 19 May, 2016 1 commit
  7. 18 May, 2016 3 commits
  8. 17 May, 2016 6 commits
  9. 13 May, 2016 3 commits
  10. 12 May, 2016 8 commits
  11. 11 May, 2016 2 commits
    • Jeffrey Wilcke's avatar
      accounts/abi: fixed unpacking in to already slice interfaces · 91a7a4a7
      Jeffrey Wilcke authored
      Previously it was assumed that wheneven type `[]interface{}` was given
      that the interface was empty. The abigen rightfully assumed that
      interface slices which already have pre-allocated variable sets to be
      assigned.
      
      This PR fixes that by checking that the given `[]interface{}` is larger
      than zero and assigns each value using the generic `set` function (this
      function has also been moved to abi/reflect.go) and checks whether the
      assignment was possible.
      
      The generic assignment function `set` now also deals with pointers
      (useful for interface slice mentioned above) by dereferencing the
      pointer until it finds a setable type.
      91a7a4a7
    • Péter Szilágyi's avatar
      Merge pull request #2549 from karalabe/geth-tester-text-templates · d89e57ea
      Péter Szilágyi authored
      cmd/geth: use text/templates in the tester, not html
      d89e57ea