aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-18 19:10:21 +0800
committerobscuren <geffobscura@gmail.com>2014-02-18 19:10:21 +0800
commitc866fcc5b37b53e0d11c1fd7e6cb971859537f2c (patch)
tree88df6ecab80472a9ad4103ac20c0f92135a6050e
parentd7eca7bcc12e940f0aa80d45e6e802ba68143b5c (diff)
downloadgo-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar.gz
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar.bz2
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar.lz
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar.xz
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.tar.zst
go-tangerine-c866fcc5b37b53e0d11c1fd7e6cb971859537f2c.zip
Added new address
-rw-r--r--ethchain/block_manager.go2
-rw-r--r--ethutil/config.go2
-rw-r--r--ethutil/helpers.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/ethchain/block_manager.go b/ethchain/block_manager.go
index 092e3dea5..4e72f51ba 100644
--- a/ethchain/block_manager.go
+++ b/ethchain/block_manager.go
@@ -43,7 +43,7 @@ type BlockManager struct {
func AddTestNetFunds(block *Block) {
for _, addr := range []string{
"8a40bfaa73256b60764c1bf40675a99083efb075", // Gavin
- "93658b04240e4bd4046fd2d6d417d20f146f4b43", // Jeffrey
+ "e6716f9544a56c530d868e4bfbacb172315bdead", // Jeffrey
"1e12515ce3e0f817a4ddef9ca55788a1d66bd2df", // Vit
"1a26338f0d905e295fccb71fa9ea849ffa12aaf4", // Alex
} {
diff --git a/ethutil/config.go b/ethutil/config.go
index 2a239f8e2..df1772d81 100644
--- a/ethutil/config.go
+++ b/ethutil/config.go
@@ -43,7 +43,7 @@ func ReadConfig(base string) *config {
}
}
- Config = &config{ExecPath: path, Debug: true, Ver: "0.2.2"}
+ Config = &config{ExecPath: path, Debug: true, Ver: "0.2.3"}
Config.Log = NewLogger(LogFile|LogStd, 0)
}
diff --git a/ethutil/helpers.go b/ethutil/helpers.go
index 11a474081..aa0f79a04 100644
--- a/ethutil/helpers.go
+++ b/ethutil/helpers.go
@@ -58,7 +58,7 @@ func MatchingNibbleLength(a, b []int) int {
func Hex(d []byte) string {
return hex.EncodeToString(d)
}
-func ToHex(str string) []byte {
+func FromHex(str string) []byte {
h, _ := hex.DecodeString(str)
return h
}