aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-30 21:41:14 +0800
committerobscuren <geffobscura@gmail.com>2015-01-30 21:41:14 +0800
commit0c0708076e2e53f2c85256b9fee5749cccd1d739 (patch)
tree8b79ef36159ed72d64d13dcca0ac78f26697290f /README.md
parent3847e248dfc36dbc9d63f5388ad771a665dff793 (diff)
downloadgo-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar.gz
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar.bz2
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar.lz
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar.xz
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.tar.zst
go-tangerine-0c0708076e2e53f2c85256b9fee5749cccd1d739.zip
added disasm
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index d6b0e312f..d1f8dc203 100644
--- a/README.md
+++ b/README.md
@@ -48,6 +48,7 @@ Go Ethereum comes with several binaries found in
10000 -price 0 -dump`. See `-h` for a detailed description.
* `rlpdump` converts a rlp stream to `interface{}`.
* `peerserver` simple P2P (noi-ethereum) peer server.
+* `disasm` disassembles EVM code: `echo "6001" | disasm`
General command line options
============================
@@ -103,7 +104,7 @@ Style](http://golang.org/doc/effective_go.html#formatting).
Unless structs fields are supposed to be directly accesible, provide
Getters and hide the fields through Go's exporting facility.
-When you comment put meaningfull comments. Describe in detail what you
+When you comment put meaningful comments. Describe in detail what you
want to achieve.
*wrong*