1. 22 6月, 2017 11 次提交
  2. 21 6月, 2017 6 次提交
  3. 19 6月, 2017 2 次提交
  4. 18 6月, 2017 1 次提交
  5. 17 6月, 2017 1 次提交
  6. 16 6月, 2017 9 次提交
  7. 15 6月, 2017 5 次提交
    • N
      Fix build · f28757d2
      Nathan Hourt 提交于
      f28757d2
    • N
      Ref #19: Implement producer scheduling · 566c1da9
      Nathan Hourt 提交于
      Calculating the new producer schedule based on votes is now implemented;
      however, the voting itself is not. :D But the code builds, and the tests
      pass. It's good progress, it's been a good day.
      
      Note that "the tests pass" means little at this stage, since I haven't
      written any new tests to exercise the new code. In other words, NEEDS
      TESTING!
      566c1da9
    • N
      Small Refactors · cb13ff0d
      Nathan Hourt 提交于
      - Rename config::ProducerCount -> config::BlocksPerRound
      - Add new config::VotedProducersPerRound = 20
      - Split up staked_balance_objects.hpp moving ProducerVotesObject to
      producer_objects.hpp
      cb13ff0d
    • D
      Merge branch 'master' of github.com:EOSIO/eos · f52851b4
      Daniel Larimer 提交于
      f52851b4
    • D
      Adding wasm-jit code · 3111f0ea
      Daniel Larimer 提交于
      3111f0ea
  8. 14 6月, 2017 5 次提交
    • N
      Ref #19: Progress towards producer scheduling · 67114624
      Nathan Hourt 提交于
      Add producer schedule changes to block_header, so light clients can see
      the round changes by just watching block headers.
      
      Implement changing the producer schedule at round changes, first checking
      that the schedule changes in the block_header are correct, then applying
      them.
      
      TODO: Actually calculating the new round (right not it never changes)
      67114624
    • N
      Change block_header::producer from id_type to AccountName · 925be47f
      Nathan Hourt 提交于
      Wire protocol specs say never to put an id_type on the wire, but
      block_header contained the id_type for the producer which created it.
      Fix this by using the AccountName of the producer's owner instead.
      925be47f
    • N
      Resolve #17: Update blockchain configuration on round change · d0e2c256
      Nathan Hourt 提交于
      The producer-median-voted blockchain configuration parameters are now
      updated when the round changes. The previously expected-failing test
      case for this now passes
      d0e2c256
    • N
      Add chain_administration_interface · dc91c3ca
      Nathan Hourt 提交于
      This new interface allows the chain_controller to request a fresh round
      of producers and request the producers' median voted blockchain
      configuration.
      
      Net yet complete, but integrated sufficiently to get the tests to pass.
      dc91c3ca
    • N
      Move chain_initializer to its own header · 37f2b650
      Nathan Hourt 提交于
      And rename it to chain_initializer_interface
      37f2b650