Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | p2p: add I/O timeout for encrytion handshake | Felix Lange | 2015-02-13 | 1 | -1/+3 |
| | |||||
* | p2p: fix goroutine leak for invalid peers | Felix Lange | 2015-02-13 | 1 | -6/+5 |
| | | | | | The deflect logic called Disconnect on the peer, but the peer never ran and wouldn't process the disconnect request. | ||||
* | p2p: improve read deadlines | Felix Lange | 2015-02-13 | 2 | -15/+27 |
| | | | | | | | | There are now two deadlines, frameReadTimeout and payloadReadTimeout. The frame timeout is longer and allows for connections that are idle. The message timeout is still short and ensures that we don't get stuck in the middle of a message. | ||||
* | p2p/discover: map listening port using configured mechanism | Felix Lange | 2015-02-13 | 4 | -18/+35 |
| | |||||
* | p2p/discover: code review fixes | Felix Lange | 2015-02-13 | 3 | -7/+9 |
| | |||||
* | cmd/ethereum, cmd/mist, eth, p2p: use package p2p/nat | Felix Lange | 2015-02-13 | 9 | -522/+54 |
| | | | | This deletes the old NAT implementation. | ||||
* | p2p/nat: new package for port mapping stuff | Felix Lange | 2015-02-13 | 3 | -0/+499 |
| | | | | | | I have verified that UPnP and NAT-PMP work against an older version of the MiniUPnP daemon running on pfSense. This code is kind of hard to test automatically. | ||||
* | cmd/bootnode: new command (replaces cmd/peerserver) | Felix Lange | 2015-02-10 | 1 | -0/+86 |
| | |||||
* | eth: remove unused Ethereum sync fields | Felix Lange | 2015-02-10 | 1 | -4/+0 |
| | |||||
* | cmd/mist, cmd/ethereum: add CLI arguments for node key | Felix Lange | 2015-02-10 | 5 | -16/+72 |
| | |||||
* | crypto: add key loading functions | Felix Lange | 2015-02-10 | 2 | -1/+30 |
| | |||||
* | eth: don't warn if no BootNodes are specified | Felix Lange | 2015-02-09 | 1 | -0/+3 |
| | |||||
* | p2p/discover: deflake UDP tests | Felix Lange | 2015-02-09 | 4 | -59/+123 |
| | |||||
* | cmd/ethereum, cmd/mist: add flag for discovery bootstrap nodes | Felix Lange | 2015-02-07 | 9 | -22/+43 |
| | |||||
* | cmd/mist, eth, javascript, p2p: use Node URLs for peer suggestions | Felix Lange | 2015-02-07 | 6 | -62/+21 |
| | |||||
* | p2p: fixes for actual connections | Felix Lange | 2015-02-07 | 6 | -29/+38 |
| | | | | The unit test hooks were turned on 'in production'. | ||||
* | p2p/discover: add node URL functions, distinguish TCP/UDP ports | Felix Lange | 2015-02-07 | 8 | -326/+532 |
| | | | | | The discovery RPC protocol does not yet distinguish TCP and UDP ports. But it can't hurt to do so in our internal model. | ||||
* | cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p API | Felix Lange | 2015-02-06 | 16 | -125/+86 |
| | |||||
* | cmd/peerserver: is gone | Felix Lange | 2015-02-06 | 1 | -58/+0 |
| | | | | Will be back soon. Maybe. | ||||
* | p2p: integrate p2p/discover | Felix Lange | 2015-02-06 | 15 | -1659/+1056 |
| | | | | | | | | | | | | Overview of changes: - ClientIdentity has been removed, use discover.NodeID - Server now requires a private key to be set (instead of public key) - Server performs the encryption handshake before launching Peer - Dial logic takes peers from discover table - Encryption handshake code has been cleaned up a bit - baseProtocol is gone because we don't exchange peers anymore - Some parts of baseProtocol have moved into Peer instead | ||||
* | p2p/discover: add some helper functions | Felix Lange | 2015-02-06 | 4 | -20/+41 |
| | |||||
* | p2p/discover: new package implementing the Node Discovery Protocol | Felix Lange | 2015-02-06 | 4 | -0/+1428 |
| | |||||
* | rlp: fix encoding of arrays with byte element type | Felix Lange | 2015-02-06 | 2 | -1/+27 |
| | |||||
* | crypto: make it easier to run Sha3 on multiple inputs | Felix Lange | 2015-02-06 | 2 | -4/+5 |
| | | | | | crypto.Sha3(append(foo, bar)) --> crypto.Sha3(foo, bar) crypto.Sha3([]byte{}) --> crypto.Sha3() | ||||
* | key generation abstracted out, for testing with deterministic keys | zelig | 2015-02-06 | 2 | -12/+92 |
| | |||||
* | fix clientidentity test after privkey removed | zelig | 2015-02-06 | 1 | -6/+2 |
| | |||||
* | get rid of Private Key in ClientIdentity | zelig | 2015-02-06 | 1 | -5/+3 |
| | |||||
* | make crypto handshake calls package level, store privateKey on peer + tests ok | zelig | 2015-02-06 | 3 | -87/+52 |
| | |||||
* | apply handshake related improvements from p2p.crypto branch | zelig | 2015-02-06 | 3 | -29/+31 |
| | |||||
* | add temporary forced session token generation | zelig | 2015-02-06 | 2 | -0/+8 |
| | |||||
* | peer-level integration test for crypto handshake | zelig | 2015-02-06 | 3 | -15/+71 |
| | | | | | | | | | - add const length params for handshake messages - add length check to fail early - add debug logs to help interop testing (!ABSOLUTELY SHOULD BE DELETED LATER) - wrap connection read/writes in error check - add cryptoReady channel in peer to signal when secure session setup is finished - wait for cryptoReady or timeout in TestPeersHandshake | ||||
* | chop first byte when cryptoid.PubKeyS is set from identity.Pubkey() since ↵ | zelig | 2015-02-06 | 1 | -1/+11 |
| | | | | this is directly copied in the auth message | ||||
* | add initial peer level test (failing) | zelig | 2015-02-06 | 1 | -1/+52 |
| | |||||
* | add code documentation | zelig | 2015-02-06 | 1 | -15/+47 |
| | |||||
* | changes that fix it all: | zelig | 2015-02-06 | 2 | -57/+146 |
| | | | | | | | | | | | - set proper public key serialisation length in pubLen = 64 - reset all sizes and offsets - rename from DER to S (we are not using DER encoding) - add remoteInitRandomPubKey as return value to respondToHandshake - add ImportPublicKey with error return to read both EC golang.elliptic style 65 byte encoding and 64 byte one - add ExportPublicKey falling back to go-ethereum/crypto.FromECDSAPub() chopping off the first byte - add Import - Export tests - all tests pass | ||||
* | important fix for peer pubkey. when taken from identity, chop first format byte! | zelig | 2015-02-06 | 1 | -1/+1 |
| | |||||
* | add equality check for nonce and remote nonce | zelig | 2015-02-06 | 1 | -0/+6 |
| | |||||
* | add minor comments to the test | zelig | 2015-02-06 | 1 | -0/+4 |
| | |||||
* | first stab at integrating crypto in our p2p | zelig | 2015-02-06 | 3 | -44/+79 |
| | | | | | | | - abstract the entire handshake logic in cryptoId.Run() taking session-relevant parameters - changes in peer to accomodate how the encryption layer would be switched on - modify arguments of handshake components - fixed test getting the wrong pubkey but it till crashes on DH in newSession() | ||||
* | integrate cryptoId into peer and connection lifecycle | zelig | 2015-02-06 | 2 | -3/+33 |
| | |||||
* | completed the test. FAIL now. it crashes at diffie-hellman. ECIES -> ↵ | zelig | 2015-02-06 | 2 | -43/+57 |
| | | | | secp256k1-go panics | ||||
* | handshake test to crypto | zelig | 2015-02-06 | 1 | -1/+1 |
| | |||||
* | handshake test to crypto | zelig | 2015-02-06 | 2 | -2/+54 |
| | |||||
* | fix crash | zelig | 2015-02-06 | 1 | -22/+29 |
| | | | | | | - add session token check and fallback to shared secret in responder call too - use explicit length for the types of new messages - fix typo resp[resLen-1] = tokenFlag | ||||
* | rewrite to comply with latest spec | zelig | 2015-02-06 | 1 | -53/+138 |
| | | | | | | | | - correct sizes for the blocks : sec signature 65, ecies sklen 16, keylength 32 - added allocation to Xor (should be optimized later) - no pubkey reader needed, just do with copy - restructuring now into INITIATE, RESPOND, COMPLETE -> newSession initialises the encryption/authentication layer - crypto identity can be part of client identity, some initialisation when server created | ||||
* | add crypto auth logic to p2p | zelig | 2015-02-06 | 1 | -0/+174 |
| | |||||
* | fix protocol to accomodate privkey | zelig | 2015-02-06 | 2 | -1/+14 |
| | |||||
* | add privkey to clientIdentity + tests | zelig | 2015-02-06 | 2 | -5/+21 |
| | |||||
* | initial hook for crypto handshake (void, off by default) | zelig | 2015-02-06 | 1 | -0/+26 |
| | |||||
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-06 | 2 | -6/+5 |
|\ | |||||
| * | Pin Travis go version to 1.4.1 | Taylor Gerring | 2015-02-06 | 1 | -1/+1 |
| | | |||||
| * | Only submit on coverage report success | Taylor Gerring | 2015-02-06 | 1 | -2/+1 |
| | | |||||
| * | Only download missing deps, not build | Taylor Gerring | 2015-02-06 | 1 | -1/+1 |
| | | |||||
| * | Don't reference by $GOROOT | Taylor Gerring | 2015-02-06 | 1 | -2/+2 |
| | | |||||
* | | Undone fix. Will re-enable once chain resets | obscuren | 2015-02-06 | 1 | -12/+5 |
|/ | |||||
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-06 | 1 | -2/+1 |
|\ | | | | | | | | | Conflicts: README.md | ||||
| * | Updated readme | obscuren | 2015-02-06 | 1 | -10/+10 |
| | | |||||
* | | Updated readme | obscuren | 2015-02-06 | 1 | -10/+10 |
|/ | |||||
* | Merge pull request #290 from ↵ | Jeffrey Wilcke | 2015-02-06 | 2 | -7/+7 |
|\ | | | | | | | | | Gustav-Simonsson/correct_block_parent_timestamp_check Correct block parent timestamp check and typos | ||||
| * | Correct block parent timestamp check and typos | Gustav Simonsson | 2015-02-04 | 2 | -7/+7 |
| | | |||||
* | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-06 | 7 | -17/+13 |
|\ \ | |||||
| * \ | Merge pull request #287 from ethereum/system-testing | Jeffrey Wilcke | 2015-02-06 | 7 | -17/+13 |
| |\ \ | | | | | | | | | Seednode CLI param updates | ||||
| | * | | Move hardcoded seed node address to app flag | Taylor Gerring | 2015-02-03 | 7 | -17/+13 |
| | | | | | | | | | | | | | | | | Replaces functionality `-seed=true` with `-seed="ip:port"` | ||||
* | | | | updated home | obscuren | 2015-02-06 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge commit '9d84609b3faf797f4a611587abdda3d6b3b07917' into develop | obscuren | 2015-02-06 | 4 | -51/+17 |
|\ \ \ \ | |||||
| * \ \ \ | Merge branch 'master' of https://github.com/ethereum/ethereum.js | Marek Kotewicz | 2015-02-06 | 0 | -0/+0 |
| |\ \ \ \ | |||||
| * | | | | | bring back jsonrpc single method calls in polling | Marek Kotewicz | 2015-02-06 | 4 | -51/+17 |
| | | | | | | |||||
* | | | | | | pending / chain event | obscuren | 2015-02-06 | 6 | -5/+71 |
| | | | | | | |||||
* | | | | | | Merge branch 'tgerring-develop' into develop | obscuren | 2015-02-06 | 6 | -40/+39 |
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | |||||
| * | | | | | Merge branch 'develop' of https://github.com/tgerring/go-ethereum into ↵ | obscuren | 2015-02-06 | 6 | -40/+39 |
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tgerring-develop Conflicts: rpc/http/server.go | ||||
| * | | | | | Merge branch 'develop' of github.com:tgerring/go-ethereum into develop | Taylor Gerring | 2015-02-05 | 5 | -39/+39 |
| |\ \ \ \ \ | |||||
| | * | | | | | Update RPC message format | Taylor Gerring | 2015-02-04 | 3 | -22/+27 |
| | | | | | | | |||||
| | * | | | | | Merge branch 'develop' of github.com:tgerring/go-ethereum into develop | Taylor Gerring | 2015-02-04 | 3 | -17/+12 |
| | |\ \ \ \ \ | | | |_|_|_|/ | | |/| | | | | |||||
| | | * | | | | Update signature for rpc websockets | Taylor Gerring | 2015-02-02 | 2 | -15/+9 |
| | | | | | | | |||||
| | | * | | | | Decrease log level for Sending RPC payload | Taylor Gerring | 2015-02-02 | 1 | -2/+3 |
| | | | | | | | |||||
| | | * | | | | Merge pull request #3 from ethereum/develop | Taylor Gerring | 2015-02-02 | 553 | -23848/+2237273 |
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | Update to develop | ||||
| * | | | | | | | Use different default RPC port per #186 | Taylor Gerring | 2015-02-05 | 2 | -2/+2 |
| |/ / / / / / | |||||
* | | | | | | | Default gas price and default gas for rpc | obscuren | 2015-02-05 | 4 | -18/+15 |
| | | | | | | | |||||
* | | | | | | | set uncles regardless of empty uncle list. Fixes invalid blocks being mined | obscuren | 2015-02-05 | 2 | -5/+4 |
| | | | | | | | |||||
* | | | | | | | fixed test | obscuren | 2015-02-05 | 2 | -0/+3 |
| | | | | | | | |||||
* | | | | | | | Propagate known transactions to new peers on connect | obscuren | 2015-02-05 | 6 | -22/+30 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'develop' into miner | obscuren | 2015-02-05 | 35 | -482/+1340 |
|\ \ \ \ \ \ \ | |||||
| * \ \ \ \ \ \ | updated tests | obscuren | 2015-02-05 | 28 | -946/+2130 |
| |\ \ \ \ \ \ \ | | | |_|_|_|/ / | | |/| | | | | | |||||
| | * | | | | | | Merge pull request #55 from ethereum/develop | Marek Kotewicz | 2015-02-04 | 5 | -4/+19 |
| | |\ \ \ \ \ \ | | | | |_|_|/ / | | | |/| | | | | fixed jsonrpc result field 0 not handled properly | ||||
| | | * | | | | | fixed jsonrpc response 0 not handled properly | Marek Kotewicz | 2015-02-04 | 5 | -4/+19 |
| | |/ / / / / | |||||
| | * | | | | | version upgrade | Marek Kotewicz | 2015-02-04 | 2 | -2/+2 |
| | | | | | | | |||||
| | * | | | | | jsonrpc.js tests && jsonrpc response validation is more strict | Marek Kotewicz | 2015-02-04 | 8 | -10/+235 |
| | | | | | | | |||||
| | * | | | | | jsonrpc.js file && batch polling | Marek Kotewicz | 2015-02-04 | 7 | -46/+196 |
| | | | | | | | |||||
| | * | | | | | simplified polling && jsonrpc payload creation | Marek Kotewicz | 2015-02-04 | 7 | -90/+36 |
| | | | | | | | |||||
| | * | | | | | tests && fixes for utils methods | Marek Kotewicz | 2015-02-04 | 6 | -4/+101 |
| | | | | | | | |||||
| | * | | | | | clearing tests | Marek Kotewicz | 2015-02-04 | 7 | -442/+465 |
| | | | | | | | |||||
| | * | | | | | version upgrade 0.0.12 | Marek Kotewicz | 2015-02-03 | 2 | -2/+2 |
| | | | | | | | |||||
| | * | | | | | Merge branch 'develop' into cpp | Marek Kotewicz | 2015-02-03 | 13 | -247/+555 |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dist/ethereum.js.map dist/ethereum.min.js | ||||
| | | * | | | | | parsing events output | Marek Kotewicz | 2015-02-03 | 6 | -13/+69 |
| | | | | | | | | |||||
| | | * | | | | | gulp | Marek Kotewicz | 2015-02-03 | 3 | -5/+35 |
| | | | | | | | | |||||
| | | * | | | | | event outputParser && tests | Marek Kotewicz | 2015-02-03 | 8 | -136/+288 |
| | | | | | | | | |||||
| | | * | | | | | common cleanup | Marek Kotewicz | 2015-02-03 | 6 | -110/+114 |
| | | | | | | | | |||||
| | | * | | | | | event_inc example | Marek Kotewicz | 2015-02-02 | 1 | -0/+66 |
| | | | | | | | | |||||
| | * | | | | | | reverted ethereum.js | arkpar | 2015-02-03 | 1 | -3/+4 |
| | | | | | | | | |||||
| | * | | | | | | removed splitter.qml | arkpar | 2015-02-02 | 1 | -4/+3 |
| | | | | | | | | |||||
| | * | | | | | | Better HTML template in Mix. | Gav Wood | 2015-02-02 | 4 | -3/+9 |
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use happened in JS. Debugging QML enabled. | ||||
| | * | | | | | fixed event signatures | Marek Kotewicz | 2015-02-01 | 5 | -10/+20 |
| | | | | | | | |||||
| | * | | | | | version upgrade | Marek Kotewicz | 2015-01-31 | 2 | -2/+2 |
| | | | | | | | |||||
| | * | | | | | Merge branch 'develop' | Marek Kotewicz | 2015-01-31 | 15 | -709/+1238 |
| | |\ \ \ \ \ | |||||
| | | * | | | | | eth.filter next param optional | Marek Kotewicz | 2015-01-31 | 5 | -9/+20 |
| | | | | | | | | |||||
| | | * | | | | | formatInput && formatOutput simplified | Marek Kotewicz | 2015-01-31 | 5 | -52/+56 |
| | | | | | | | | |||||
| | | * | | | | | few methods moved to utils | Marek Kotewicz | 2015-01-31 | 9 | -154/+154 |
| | | | | | | | | |||||
| | | * | | | | | constants separated to const.js file | Marek Kotewicz | 2015-01-31 | 6 | -58/+104 |
| | | | | | | | | |||||
| | | * | | | | | toAscii && fromAscii moved to utils | Marek Kotewicz | 2015-01-31 | 7 | -146/+122 |
| | | | | | | | | |||||
| | | * | | | | | events | Marek Kotewicz | 2015-01-31 | 6 | -19/+63 |
| | | | | | | | | |||||
| | | * | | | | | events | Marek Kotewicz | 2015-01-31 | 5 | -22/+120 |
| | | | | | | | | |||||
| | | * | | | | | abi.js cleanup && new types.js, utils.js | Marek Kotewicz | 2015-01-31 | 9 | -169/+327 |
| | | | | | | | | |||||
| | | * | | | | | gulp | Marek Kotewicz | 2015-01-31 | 3 | -129/+193 |
| | | | | | | | | |||||
| | | * | | | | | formatters separated | Marek Kotewicz | 2015-01-31 | 2 | -119/+179 |
| | | | | | | | | |||||
| | | * | | | | | event options | Marek Kotewicz | 2015-01-31 | 8 | -36/+104 |
| | | | | | | | | |||||
| | * | | | | | | contract with array example | Marek Kotewicz | 2015-01-30 | 1 | -0/+76 |
| | |/ / / / / | |||||
| | * | | | | | topics are deprecated | Marek Kotewicz | 2015-01-29 | 5 | -10/+16 |
| | | | | | | | |||||
| | * | | | | | topic for backwards compatibility | Marek Kotewicz | 2015-01-29 | 4 | -3/+5 |
| | | | | | | | |||||
| | * | | | | | Merge branch 'cpp' into cpp2 | Marek Kotewicz | 2015-01-29 | 18 | -153/+797 |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: example/balance.html | ||||
| | | * | | | | | moved comment | Marek Kotewicz | 2015-01-29 | 3 | -14/+10 |
| | | | | | | | | |||||
| | | * | | | | | event example | Marek Kotewicz | 2015-01-29 | 8 | -15/+162 |
| | | | | | | | | |||||
| | | * | | | | | contract.js simplified | Marek Kotewicz | 2015-01-29 | 6 | -188/+231 |
| | | | | | | | | |||||
| | | * | | | | | event.js | Marek Kotewicz | 2015-01-29 | 10 | -10/+106 |
| | | | | | | | | |||||
| | | * | | | | | events init | Marek Kotewicz | 2015-01-28 | 4 | -5/+66 |
| | | | | | | | | |||||
| | | * | | | | | tests for abi.filters | Marek Kotewicz | 2015-01-28 | 2 | -1/+59 |
| | | | | | | | | |||||
| | | * | | | | | abi function type | Marek Kotewicz | 2015-01-28 | 8 | -12/+209 |
| | | | | | | | | |||||
| | * | | | | | | Fix for API. | Gav Wood | 2015-01-29 | 1 | -1/+1 |
| | | | | | | | | |||||
| * | | | | | | | Updated tests | obscuren | 2015-02-04 | 8 | -5/+137 |
| | |_|/ / / / | |/| | | | | | |||||
* | | | | | | | Filtering | obscuren | 2015-02-05 | 13 | -498/+983 |
| | | | | | | | |||||
* | | | | | | | WIP miner | obscuren | 2015-02-04 | 5 | -54/+219 |
|/ / / / / / | |||||
* | | | | | | Removed minimum height. Closes #282 | obscuren | 2015-02-03 | 1 | -2/+1 |
| | | | | | | |||||
* | | | | | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-03 | 2 | -3/+1 |
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | |||||
| * | | | | | Separate Coveralls submission from coverage script | Taylor Gerring | 2015-02-03 | 2 | -3/+1 |
| | |_|_|/ | |/| | | | |||||
* | | | | | Fixed whisper "to" filtering. Closes #283 | obscuren | 2015-02-03 | 4 | -4/+16 |
| | | | | | |||||
* | | | | | Added missing whisper timestamp. Closes #284 | obscuren | 2015-02-03 | 3 | -7/+5 |
| | | | | | |||||
* | | | | | Added a different default home page | obscuren | 2015-02-03 | 3 | -2/+77 |
| | | | | | |||||
* | | | | | Docs & old code removed | obscuren | 2015-02-03 | 4 | -25/+28 |
| | | | | | |||||
* | | | | | Make sure that CALL addr is always 20 bytes | obscuren | 2015-02-03 | 1 | -5/+6 |
| | | | | | |||||
* | | | | | Raw data for existing blocks | obscuren | 2015-02-03 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Fixed a copy issue in the trie which could cause a consensus failure | obscuren | 2015-02-03 | 7 | -19/+53 |
| | | | | | |||||
* | | | | | Updated tests | obscuren | 2015-02-03 | 38 | -157/+6367 |
| | | | | | |||||
* | | | | | Added (disabled) Jit validation | obscuren | 2015-02-01 | 5 | -4/+43 |
| | | | | | |||||
* | | | | | Removed some VMEnv & Added VmType() to vm.Environment | obscuren | 2015-02-01 | 6 | -184/+25 |
|/ / / / | |||||
* | | | | Merge branch 'bounty' into develop | obscuren | 2015-02-01 | 1 | -1/+2 |
|\ \ \ \ | |||||
| * | | | | Fixed n | obscuren | 2015-02-01 | 1 | -1/+2 |
| | | | | | |||||
* | | | | | Merge branch 'bounty' into develop | obscuren | 2015-02-01 | 2 | -6/+2 |
|\| | | | | |||||
| * | | | | Fixed Sign nonce | obscuren | 2015-02-01 | 2 | -6/+2 |
| | | | | | |||||
* | | | | | Merge branch 'bounty' into develop | obscuren | 2015-02-01 | 2 | -7/+23 |
|\| | | | | |||||
| * | | | | Validate transactions sender before adding to pool. Closes #272 | obscuren | 2015-02-01 | 2 | -7/+23 |
| | | | | | |||||
* | | | | | removed old code | obscuren | 2015-02-01 | 1 | -12/+0 |
| | | | | | |||||
* | | | | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-01 | 3 | -22/+24 |
|\ \ \ \ \ | |||||
| * | | | | | Update coveralls badge to develop branch | Taylor Gerring | 2015-01-31 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Travis fixes for Qt5.4 | Taylor Gerring | 2015-01-31 | 1 | -4/+7 |
| | | | | | | |||||
| * | | | | | Updated for Qt5.4 | Taylor Gerring | 2015-01-31 | 1 | -17/+16 |
| | | | | | | |||||
* | | | | | | Removed debug log | obscuren | 2015-01-31 | 1 | -2/+0 |
|/ / / / / | |||||
* | | | | | added new default favicon | obscuren | 2015-01-30 | 1 | -0/+0 |
| | | | | | |||||
* | | | | | "fixed" transaction view | obscuren | 2015-01-30 | 3 | -6/+5 |
| | | | | | |||||
* | | | | | added disasm | obscuren | 2015-01-30 | 1 | -1/+2 |
| | | | | | |||||
* | | | | | Bumped version number | obscuren | 2015-01-30 | 2 | -2/+2 |
| | | | | | |||||
* | | | | | Added whisper messages | obscuren | 2015-01-30 | 3 | -5/+59 |
| | | | | | | | | | | | | | | | | | | | | * have identity & get messages | ||||
* | | | | | Added whisper interface for xeth, added examples, updated RPC | obscuren | 2015-01-30 | 10 | -17/+296 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * Added RPC methods for whisper * Added whisper example | ||||
* | | | | | Fixed whisper pub key bug | obscuren | 2015-01-30 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * Unrecoverable messages would cause segfault when recovering invalid pub key | ||||
* | | | | | Fixed issue with Storage() | obscuren | 2015-01-30 | 3 | -31/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Storage() returned encoded values. They are now decode prior to hexing * Removed old code from state object * Updated coin | ||||
* | | | | | debug err removed | obscuren | 2015-01-30 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | default values removed | obscuren | 2015-01-30 | 4 | -16/+24 |
| | | | | | |||||
* | | | | | Merge branch 'qt5.4' of github.com-obscure:ethereum/go-ethereum into qt5.4 | obscuren | 2015-01-30 | 10 | -518/+45 |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: rpc/message.go | ||||
| * | | | | | Travis fix | Taylor Gerring | 2015-01-30 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Satisfy dependency for obscuren/qml fork | ||||
| * | | | | | Cleanup | Taylor Gerring | 2015-01-30 | 4 | -67/+44 |
| | | | | | | |||||
| * | | | | | Merge branch 'qt5.4' of github.com:ethereum/go-ethereum into qt5.4 | Taylor Gerring | 2015-01-30 | 72 | -3144/+1736 |
| |\ \ \ \ \ | |||||
| * | | | | | | Remove old websocket implementation | Taylor Gerring | 2015-01-29 | 5 | -474/+0 |
| | | | | | | | |||||
* | | | | | | | More dapp samples | obscuren | 2015-01-30 | 7 | -41/+351 |
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | * Info DApp, coin DApp * Additional rpc methods | ||||
* | | | | | | Reimplemented message filters for rpc calls | obscuren | 2015-01-29 | 6 | -15/+206 |
| | | | | | | |||||
* | | | | | | Samples and disams cmd for evm code | obscuren | 2015-01-29 | 4 | -5/+103 |
| | | | | | | |||||
* | | | | | | Added RPC "Call" for JS calls to contracts | obscuren | 2015-01-29 | 6 | -11/+55 |
| | | | | | | |||||
* | | | | | | Added abi example | obscuren | 2015-01-29 | 1 | -0/+44 |
| | | | | | | |||||
* | | | | | | removed create | obscuren | 2015-01-29 | 1 | -11/+0 |
| | | | | | | |||||
* | | | | | | Merge branch 'develop' into qt5.4 | obscuren | 2015-01-29 | 1 | -3/+3 |
|\ \ \ \ \ \ | |||||
| * | | | | | | Separate golang source dir from GOPATH dir | Taylor Gerring | 2015-01-29 | 1 | -3/+3 |
| | | | | | | | |||||
* | | | | | | | implement transact | obscuren | 2015-01-29 | 5 | -48/+24 |
| | | | | | | | |||||
* | | | | | | | updated ethereum.js and moved to subfolder | obscuren | 2015-01-29 | 7 | -3/+140 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Previous subtree caused a lot of trouble * Implemented sha3 in our shiny new http JSON RPC | ||||
* | | | | | | | Add 'cmd/mist/assets/ext/ethereum.js/' from commit ↵ | obscuren | 2015-01-29 | 34 | -0/+4018 |
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '63d9c070ef7637a3d570a5a45ea931c1680ebc02' git-subtree-dir: cmd/mist/assets/ext/ethereum.js git-subtree-mainline: f80fe9776335312615ce3b1a565e4f48e171ab0d git-subtree-split: 63d9c070ef7637a3d570a5a45ea931c1680ebc02 | ||||
| * | | | | | | fixed incoming messages | Marek Kotewicz | 2015-01-28 | 4 | -4/+4 |
| | | | | | | | |||||
| * | | | | | | log error on console, if api returns an error | Marek Kotewicz | 2015-01-28 | 4 | -3/+15 |
| | | | | | | | |||||
| * | | | | | | removed fromFixed, toFixed && offset from tests | Marek Kotewicz | 2015-01-28 | 1 | -3/+0 |
| | | | | | | | |||||
| * | | | | | | removed web3.eth.account, fixed #37 | Marek Kotewicz | 2015-01-27 | 5 | -6/+3 |
| | | | | | | | |||||
| * | | | | | | fixed #23 | Marek Kotewicz | 2015-01-27 | 6 | -6/+46 |
| | |_|_|/ / | |/| | | | | |||||
| * | | | | | evaluating solidity method input params | Marek Kotewicz | 2015-01-27 | 4 | -3/+6 |
| | | | | | | |||||
| * | | | | | contract method name | Marek Kotewicz | 2015-01-27 | 1 | -0/+1 |
| | | | | | | |||||
| * | | | | | getMethodWithName | Marek Kotewicz | 2015-01-27 | 4 | -32/+32 |
| | | | | | | |||||
| * | | | | | fixed contract example | Marek Kotewicz | 2015-01-27 | 1 | -2/+2 |
| | | | | | | |||||
| * | | | | | fixed natspec example | Marek Kotewicz | 2015-01-27 | 1 | -2/+0 |
| | | | | | | |||||
| * | | | | | Merge branch 'develop' into cpp | Marek Kotewicz | 2015-01-27 | 20 | -68/+78 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dist/ethereum.js.map dist/ethereum.min.js | ||||
| | * | | | | | removed promise dependency, updated readme, fixed node.js version of lib | Marek Kotewicz | 2015-01-27 | 13 | -36/+24 |
| | | | | | | | |||||
| | * | | | | | upgraded version to 0.0.9 | Marek Kotewicz | 2015-01-26 | 2 | -2/+2 |
| | | | | | | | |||||
| | * | | | | | gulp | Marek Kotewicz | 2015-01-26 | 3 | -3/+3 |
| | | | | | | | |||||
| | * | | | | | Merge branch 'master' into sync | Marek Kotewicz | 2015-01-26 | 1 | -1/+1 |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/websocket.js | ||||
| | | * | | | | | added local | wanderer | 2015-01-25 | 1 | -0/+18 |
| | | | | | | | | |||||
| | | * | | | | | Merge pull request #32 from kumavis/patch-1 | Marek Kotewicz | 2015-01-18 | 1 | -1/+1 |
| | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | WebsocketProvider - fixed incorrect variable name | ||||
| | | | * | | | | | WebsocketProvider - fixed incorrect variable name | aaron | 2015-01-17 | 1 | -1/+1 |
| | | |/ / / / / | |||||
| | | * | | | | | shh getMessage => getMessages | Jeffrey Wilcke | 2015-01-13 | 1 | -1/+1 |
| | | | | | | | | |||||
| | * | | | | | | Merge branch 'develop' into sync | Marek Kotewicz | 2015-01-26 | 1 | -0/+18 |
| | |\ \ \ \ \ \ | |||||
| | | * | | | | | | added addressbook | wanderer | 2015-01-25 | 1 | -0/+18 |
| | | | | | | | | | |||||
| | * | | | | | | | polling every second | Marek Kotewicz | 2015-01-26 | 4 | -4/+4 |
| | | | | | | | | | |||||
| | * | | | | | | | return null instead of undefined, if not provider is set | Marek Kotewicz | 2015-01-26 | 4 | -4/+4 |
| | | | | | | | | | |||||
| | * | | | | | | | watches are calling callback with a single result object, not a full jsonrpc ↵ | Marek Kotewicz | 2015-01-26 | 5 | -14/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | response | ||||
| * | | | | | | | | Additional work on the JS stuff to make it more similar to Solidity. | Gav Wood | 2015-01-26 | 5 | -4/+40 |
| | | | | | | | | | |||||
| * | | | | | | | | Fix string outputs. | Gav Wood | 2015-01-25 | 5 | -8/+26 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Auto collapse for < 2 returns. | ||||
| * | | | | | | | | Auto select call or transact depending on constness. | Gav Wood | 2015-01-25 | 4 | -6/+6 |
| | | | | | | | | | |||||
| * | | | | | | | | Fixes to ethereum.js and standard.js. | Gav Wood | 2015-01-25 | 4 | -5/+29 |
| | | | | | | | | | |||||
| * | | | | | | | | Vanity addresses in AZ. | Gav Wood | 2015-01-25 | 5 | -6/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes to ethereum.js eth.flush() | ||||
| * | | | | | | | | Merge commit 'b1971f46cce7d21be5f6277c9f8c406a0d195f78' into natspec | Marek Kotewicz | 2015-01-23 | 5 | -50/+34 |
| |\| | | | | | | | |||||
| | * | | | | | | | simplified synchronous polling | Marek Kotewicz | 2015-01-23 | 5 | -50/+34 |
| | | | | | | | | | |||||
| * | | | | | | | | natspec.js updated to use sync api | Marek Kotewicz | 2015-01-22 | 1 | -1/+1 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge commit '93fa6855afad7a7eb86e49efe384372a6060da35' into natspec | Marek Kotewicz | 2015-01-22 | 4 | -23/+27 |
| |\| | | | | | | | |||||
| | * | | | | | | | not parsing transaction output | Marek Kotewicz | 2015-01-22 | 4 | -23/+27 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge commit 'b32dedc5b54f853cf63bb2663c8bca6aa4272b0b' into natspec | Marek Kotewicz | 2015-01-22 | 4 | -39/+43 |
| |\| | | | | | | | |||||
| | * | | | | | | | fixed contract.js | Marek Kotewicz | 2015-01-22 | 4 | -39/+43 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge commit '8e3ba3a4285cc7e902a018196b3849df56944dd0' into natspec | Marek Kotewicz | 2015-01-22 | 5 | -66/+88 |
| |\| | | | | | | | |||||
| | * | | | | | | | implicit solidity method call | Marek Kotewicz | 2015-01-22 | 5 | -66/+88 |
| | | | | | | | | | |||||
| * | | | | | | | | fixed natspec example | Marek Kotewicz | 2015-01-22 | 1 | -9/+8 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge commit 'cdd7af2a6e87363d0ff7d2528f9d9b521bf2ef20' into natspec | Marek Kotewicz | 2015-01-22 | 5 | -8/+78 |
| |\| | | | | | | | |||||
| | * | | | | | | | qt sync provider | Marek Kotewicz | 2015-01-22 | 5 | -8/+78 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge commit 'eb4984c0d036c1420e782ca136810e851e33fb37' into natspec | Marek Kotewicz | 2015-01-22 | 21 | -1181/+265 |
| |\| | | | | | | | |||||
| | * | | | | | | | changes in filter.js (not yet working) | Marek Kotewicz | 2015-01-22 | 5 | -50/+20 |
| | | | | | | | | | |||||
| | * | | | | | | | toDecimal/fromDecimal is using bignumber.js now | Marek Kotewicz | 2015-01-22 | 4 | -29/+63 |
| | | | | | | | | | |||||
| | * | | | | | | | removed unused pieces of code | Marek Kotewicz | 2015-01-22 | 4 | -93/+3 |
| | | | | | | | | | |||||
| | * | | | | | | | removed send queues from providermanager | Marek Kotewicz | 2015-01-22 | 5 | -62/+28 |
| | | | | | | | | | |||||
| | * | | | | | | | contract.html example is working with sync api | Marek Kotewicz | 2015-01-22 | 8 | -62/+60 |
| | | | | | | | | | |||||
| | * | | | | | | | sync api tests running, removed unused pieces of code | Marek Kotewicz | 2015-01-22 | 10 | -173/+9 |
| | | | | | | | | | |||||
| | * | | | | | | | removed unused providers | Marek Kotewicz | 2015-01-22 | 8 | -823/+9 |
| | | | | | | | | | |||||
| | * | | | | | | | http sync api | Marek Kotewicz | 2015-01-22 | 8 | -102/+286 |
| | |/ / / / / / | |||||
| * | | | | | | | Merge commit 'c4638ba3edbd14677da5441d61f7845668df2b22' into natspec | Marek Kotewicz | 2015-01-22 | 5 | -6/+11 |
| |\| | | | | | | |||||
| | * | | | | | | gulp | Marek Kotewicz | 2015-01-22 | 3 | -5/+8 |
| | | | | | | | | |||||
| | * | | | | | | changes to for natspec | Marek Kotewicz | 2015-01-22 | 2 | -1/+3 |
| | | | | | | | | |||||
| * | | | | | | | natspec changes | Marek Kotewicz | 2015-01-22 | 1 | -2/+3 |
| | | | | | | | | |||||
| * | | | | | | | Merge commit '53b4fda16d0b191be8ab986379a328aa38aaf916' into natspec | Marek Kotewicz | 2015-01-21 | 7 | -38/+112 |
| |\| | | | | | | |||||
| | * | | | | | | _currentAbi object | Marek Kotewicz | 2015-01-21 | 1 | -0/+1 |
| | | | | | | | | |||||
| | * | | | | | | solidity methods "overloading" | Marek Kotewicz | 2015-01-20 | 7 | -38/+111 |
| | | | | | | | | |||||
| * | | | | | | | fixed natspec_contract.html example | Marek Kotewicz | 2015-01-20 | 1 | -1/+2 |
| | | | | | | | | |||||
| * | | | | | | | Merge commit '2b4d38b9bf059014596e1ab00c99dc2ad4ab3761' into ethereumjs | Marek Kotewicz | 2015-01-19 | 7 | -28/+149 |
| |\| | | | | | | |||||
| | * | | | | | | parsing real, ureal values on output | Marek Kotewicz | 2015-01-19 | 5 | -14/+85 |
| | | | | | | | | |||||
| | * | | | | | | encoding real on input | Marek Kotewicz | 2015-01-19 | 5 | -7/+61 |
| | | | | | | | | |||||
| | * | | | | | | fixes for autoprovider | Marek Kotewicz | 2015-01-19 | 5 | -13/+9 |
| | | | | | | | | |||||
| * | | | | | | | Merge commit '6a383d6ed3fb37cf6739f6ac441652adfdb70463' into ethereumjs | Marek Kotewicz | 2015-01-17 | 5 | -242/+411 |
| |\| | | | | | | |||||
| | * | | | | | | tests for parsing output array | Marek Kotewicz | 2015-01-17 | 1 | -0/+27 |
| | | | | | | | | |||||
| | * | | | | | | output parser string support | Marek Kotewicz | 2015-01-17 | 5 | -127/+207 |
| | | | | | | | | |||||
| | * | | | | | | support for int array types[] | Marek Kotewicz | 2015-01-17 | 5 | -109/+180 |
| | | | | | | | | |||||
| | * | | | | | | removed unused functions | Marek Kotewicz | 2015-01-17 | 1 | -9/+0 |
| | | | | | | | | |||||
| * | | | | | | | Merge commit '29333fc213b62b27ef826616cf77430947fb6eab' into ethereumjs | Marek Kotewicz | 2015-01-16 | 14 | -97/+112 |
| |\| | | | | | | |||||
| | * | | | | | | default padding set to 32, separated to one variable | Marek Kotewicz | 2015-01-16 | 4 | -11/+15 |
| | | | | | | | |