0045ce4cde
Future blocks not allowed
2015-01-22 00:24:30 +01:00
465b0a79d8
Updated browser & pass view to callback function
2015-01-22 00:24:20 +01:00
8af42d42da
CamelCase aesCBCDecrypt
2015-01-21 19:08:05 +01:00
1f8290ca44
Add ImportPreSaleKey
...
* ImportPreSaleKey takes a KeyStore, a presale key JSON (e.g. file content)
and a password string. It stores the key in the given key store.
* Refactored common AES decryption and moved some functions to crypto.go
2015-01-21 16:35:43 +01:00
215780ab56
Move GetRequestReply to EthereumApi
...
Off of jsonWrapper
2015-01-20 13:58:51 -06:00
a6d4ce2630
Move argument types to separate file
2015-01-20 13:57:51 -06:00
0c77a96249
Move websockets out of cmd/util
2015-01-20 13:40:24 -06:00
d92fde6980
Merge branch 'develop' into jsonrpc
2015-01-20 13:22:38 -06:00
87f50659db
fixed url bug in browser
2015-01-20 18:42:29 +01:00
9845029a75
StdVm by default
2015-01-20 15:49:12 +01:00
375cc67ba6
Hide browser bar when coming from a DApp url
2015-01-20 15:48:38 +01:00
4dd7be7ed0
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
2015-01-20 15:04:30 +01:00
12fad65991
Merge pull request #259 from Gustav-Simonsson/develop
...
KeyStore (Low level key functionality)
2015-01-20 15:04:21 +01:00
d48140cab3
Address pull request comments
...
* Further simplify "constructor" function's allocation of structs
* Fix formatting
2015-01-19 22:12:22 +01:00
3cf038f300
Address pull request comments
...
* Allocate with composite literal instead of new
* Remove check of number of bytes read from rand
2015-01-19 20:24:30 +01:00
f34838688e
Minor browser improvements
2015-01-19 11:23:17 +01:00
bcb1166e52
Added 0 key proof error
...
Private key \x00\x00...\x00 returns the _exact_ same public key as \x11
\x11...\x11. Currently investigating.
2015-01-19 11:22:56 +01:00
8d1637f567
Moved connection errors to DebugDetail level
2015-01-19 11:21:46 +01:00
b03614527b
VmDebug => StdVm
2015-01-19 11:20:55 +01:00
9b509f6478
Print error instead of returning for seed node err
...
Returning an error would indicate a complete failure initialising the
Ethereum backend. Instead we should print the message and continue.
2015-01-19 11:20:12 +01:00
89c69a1d25
VmDebug => StdVm
2015-01-19 11:18:34 +01:00
06bfe19f05
Merge pull request #260 from fjl/rlp-encoder
...
rlp: allow encoding non-empty interface values
2015-01-19 10:59:35 +01:00
7394ee7c72
Fixed difficulty
...
Difficulty was broken when refactored.
2015-01-18 15:45:54 +01:00
24613a60dc
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
2015-01-16 14:51:47 +01:00
acc8f7fadc
Add defer rescued back in
2015-01-16 14:51:38 +01:00
fc92abec2c
rlp: allow encoding non-empty interface values
...
This needs to be supported because []someInterface does occur sometimes.
Funny enough, the fix involves changes to the decoder. makeDecoder
cannot return an error for non-empty interfaces anymore because the type
cache builds both decoder and writer. Do the check at 'runtime' instead.
2015-01-15 23:35:26 +01:00
52bb149541
Merge pull request #257 from fjl/rlp-encoder
...
rlp: add functions for encoding
2015-01-15 22:28:48 +01:00
9caf32befe
Update code comments
2015-01-15 19:58:38 +01:00
47d3b3dd58
Address pull request comments
...
* Remove flags field from key struct
* Change JSON struct fields from string to []byte
* Change GenerateNewKey API to take io.Reader for random source
* Remove mixing entropy source function
* Use testing Fatal in tests
2015-01-15 19:40:10 +01:00
a1c2749380
Address pull request comments
...
* Simplify scrypt constants with const block
* Add key store constructors and make their types private
* Simplify key store and file namings to be less Java Enterprise™
* Change test error logging to use t.Error(err)
* Reduce number of naked returns (just like my ex-gf)
* Simplify file reading path code
2015-01-15 19:40:10 +01:00
945798f913
Add new key_store interface and two new key stores
...
* Add new generic key_store interface
* Add new plaintext key store storing unprotected keys on disk
* Add new encrypted key store storing encrypted keys on disk
* Add new entropy mixing function using OS and go runtime sources
2015-01-15 19:40:10 +01:00
29c46cdf34
rlp: fix Decode benchmarks
2015-01-15 11:12:39 +01:00
552f5b2693
rlp: add functions for encoding
...
I'm reasonably confident that the encoding matches the output of
ethutil.Encode for values that it supports. Some of the tests have been
adpated from the Ethereum testing repository.
There are still TODOs in the code.
2015-01-15 11:00:19 +01:00
d5d9746ca3
updated tests
2015-01-15 10:46:42 +01:00
62e0e18030
Changed public whisper api not to reveal temporary private keys
2015-01-14 18:12:18 +01:00
bb55307a9d
Updated tests
2015-01-13 20:31:31 +01:00
499bc404e8
Stub missing UnmarshalJSON methods
2015-01-13 09:37:30 -06:00
a81d835e4d
cleanup
2015-01-13 09:37:08 -06:00
961e4da7d8
Add support for CodeAt
2015-01-13 09:27:36 -06:00
b178414a47
Added license headers
2015-01-13 09:13:43 -06:00
8f733461b3
Default datadir for mist is now shared with CLI (.ethereum)
2015-01-13 14:58:12 +01:00
82beaabf6a
Fixed consensus issue
2015-01-13 14:57:51 +01:00
e3cad04dec
Fixed whisper messages
...
* Whisper protocol wasn't properly suppling envelope slices
* Message history wasn't properly propagated
* Added 'Messages' method, filtering any current envelope with the
supplied filter.
2015-01-13 13:36:44 +01:00
1e5353824a
updated tests
2015-01-13 10:32:02 +01:00
4704a0a288
remove pre compiled for tests
2015-01-13 10:30:52 +01:00
b2112729fa
cleanup
2015-01-12 23:44:56 -06:00
32bed50ba1
begin conversion to rpc over http
...
Per specification at
https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
2015-01-12 23:25:29 -06:00
5b561f434d
Merge pull request #254 from chfast/pr/jitvm_stub
...
JitVm struct stub. Forwards calls to DebugVm.
2015-01-13 00:29:41 +01:00
750d70c202
updated tests
2015-01-13 00:25:45 +01:00
34689cb3f3
Added manual triggering of filters
2015-01-12 20:36:45 +01:00