<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dexon/cmd/ethtest, branch wasm-vm</title>
<subtitle>DEXON full node (https://github.com/dexon-foundation/dexon)
</subtitle>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/'/>
<entry>
<title>cmd/ethtest: drop the manual test tool in favor of hive</title>
<updated>2017-02-23T14:49:50+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2017-02-23T14:27:36+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=5ee00209d2a916125d89227f1773917ce1fb0861'/>
<id>5ee00209d2a916125d89227f1773917ce1fb0861</id>
<content type='text'>
All the state and block tests are ran as part of our CU builds internally, as
well as have been added to hive black-box tests. As such, there is no reason for
maintaining an extra standalone tool.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All the state and block tests are ran as part of our CU builds internally, as
well as have been added to hive black-box tests. As such, there is no reason for
maintaining an extra standalone tool.
</pre>
</div>
</content>
</entry>
<entry>
<title>accounts, cmd: port packages over to the new logging system</title>
<updated>2017-02-23T10:16:46+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2017-02-22T14:58:00+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2'/>
<id>23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: blidly swap out glog to our log15, logs need rework</title>
<updated>2017-02-23T10:16:44+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2017-02-22T12:10:07+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=d4fd06c3dc6cd6d2dbd2bfebfee5bcb46a504851'/>
<id>d4fd06c3dc6cd6d2dbd2bfebfee5bcb46a504851</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: fix issues reported by honnef.co/go/simple/cmd/gosimple</title>
<updated>2017-01-06T17:18:07+00:00</updated>
<author>
<name>Felix Lange</name>
<email>fjl@twurst.com</email>
</author>
<published>2017-01-06T15:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=f2da6581ba827a2aab091f764ace8017b26450d8'/>
<id>f2da6581ba827a2aab091f764ace8017b26450d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: updated</title>
<updated>2016-11-13T22:26:07+00:00</updated>
<author>
<name>Jeffrey Wilcke</name>
<email>jeffrey@ethereum.org</email>
</author>
<published>2016-11-08T22:07:44+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=a91908e5678397a466060aa614081974a4a36455'/>
<id>a91908e5678397a466060aa614081974a4a36455</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>core, core/state, trie: EIP158, reprice &amp; skip empty account write</title>
<updated>2016-11-13T09:44:04+00:00</updated>
<author>
<name>Jeffrey Wilcke</name>
<email>jeffrey@ethereum.org</email>
</author>
<published>2016-10-20T11:36:29+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=445feaeef58bd89a113743dccf6fd5df55cde6fa'/>
<id>445feaeef58bd89a113743dccf6fd5df55cde6fa</id>
<content type='text'>
This commit implements EIP158 part 1, 2, 3 &amp; 4

1. If an account is empty it's no longer written to the trie. An empty
  account is defined as (balance=0, nonce=0, storage=0, code=0).
2. Delete an empty account if it's touched
3. An empty account is redefined as either non-existent or empty.
4. Zero value calls and zero value suicides no longer consume the 25k
  reation costs.

params: moved core/config to params

Signed-off-by: Jeffrey Wilcke &lt;jeffrey@ethereum.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit implements EIP158 part 1, 2, 3 &amp; 4

1. If an account is empty it's no longer written to the trie. An empty
  account is defined as (balance=0, nonce=0, storage=0, code=0).
2. Delete an empty account if it's touched
3. An empty account is redefined as either non-existent or empty.
4. Zero value calls and zero value suicides no longer consume the 25k
  reation costs.

params: moved core/config to params

Signed-off-by: Jeffrey Wilcke &lt;jeffrey@ethereum.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>all: remove weird files</title>
<updated>2016-10-30T10:02:34+00:00</updated>
<author>
<name>Felix Lange</name>
<email>fjl@twurst.com</email>
</author>
<published>2016-10-30T10:02:34+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=87670a7ac1558ab2d2bab20144a380c6319e222b'/>
<id>87670a7ac1558ab2d2bab20144a380c6319e222b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>core, core/vm: added gas price variance table</title>
<updated>2016-10-14T16:09:17+00:00</updated>
<author>
<name>Jeffrey Wilcke</name>
<email>geffobscura@gmail.com</email>
</author>
<published>2016-10-07T22:23:45+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=64af2aafdaf16d0bab4c2b89573324b076602bab'/>
<id>64af2aafdaf16d0bab4c2b89573324b076602bab</id>
<content type='text'>
This implements 1b &amp; 1c of EIP150 by adding a new GasTable which must be
returned from the RuleSet config method. This table is used to determine
the gas prices for the current epoch.

Please note that when the CreateBySuicide gas price is set it is assumed
that we're in the new epoch phase.

In addition this PR will serve as temporary basis while refactorisation
in being done in the EVM64 PR, which will substentially overhaul the gas
price code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This implements 1b &amp; 1c of EIP150 by adding a new GasTable which must be
returned from the RuleSet config method. This table is used to determine
the gas prices for the current epoch.

Please note that when the CreateBySuicide gas price is set it is assumed
that we're in the new epoch phase.

In addition this PR will serve as temporary basis while refactorisation
in being done in the EVM64 PR, which will substentially overhaul the gas
price code.
</pre>
</div>
</content>
</entry>
<entry>
<title>core, params, tests: add DAO hard-fork balance moves</title>
<updated>2016-07-15T13:52:55+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2016-07-11T10:55:11+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=461cdb593b9e5bd9ae9ac35c68809a3a29290dcb'/>
<id>461cdb593b9e5bd9ae9ac35c68809a3a29290dcb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cmd: fix CLI package deprecation warnings</title>
<updated>2016-06-10T08:23:00+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2016-06-10T08:23:00+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=90e07b19abaa950eaaff2eecc4918b1d16ebbcaf'/>
<id>90e07b19abaa950eaaff2eecc4918b1d16ebbcaf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
