diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-03 08:10:10 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-03 08:10:10 +0800 |
commit | 6292c5ad5a649c9c9c3dbe403c46fff960604f09 (patch) | |
tree | 224c947499468d9f80b985cb78a40e6dd69cfb28 /peer.go | |
parent | a9a564c226bae04bc1939baf44884e7cd69ee924 (diff) | |
download | go-tangerine-6292c5ad5a649c9c9c3dbe403c46fff960604f09.tar.gz go-tangerine-6292c5ad5a649c9c9c3dbe403c46fff960604f09.tar.zst go-tangerine-6292c5ad5a649c9c9c3dbe403c46fff960604f09.zip |
Transaction processing
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -271,7 +271,7 @@ out: // in the TxPool where it will undergo validation and // processing when a new block is found for i := 0; i < msg.Data.Length(); i++ { - p.ethereum.TxPool.QueueTransaction(ethchain.NewTransactionFromRlpValue(msg.Data.Get(i))) + p.ethereum.TxPool.QueueTransaction(ethchain.NewTransactionFromData(ethutil.Encode(msg.Data.Get(i).AsRaw()))) } case ethwire.MsgGetPeersTy: // Flag this peer as a 'requested of new peers' this to |