aboutsummaryrefslogtreecommitdiffstats
path: root/xeth/xeth.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-08 07:18:13 +0800
committerFelix Lange <fjl@twurst.com>2015-03-08 07:18:13 +0800
commitfda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774 (patch)
treea553908665c48fca0263f4c8c1b3ef8d3ed7e071 /xeth/xeth.go
parenta2810c06d7cfc64e1636fe4ecfd5e35cc52b0d2b (diff)
downloadgo-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar.gz
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar.bz2
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar.lz
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar.xz
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.tar.zst
go-tangerine-fda7b4c79d070f1cb4f5d7ef5b4d077d9dcf2774.zip
accounts: use pointers consistently
Account is now always a non-pointer. This will be important once the manager starts remembering accounts. AccountManager is now always a pointer because it contains locks and locks cannot be copied.
Diffstat (limited to 'xeth/xeth.go')
-rw-r--r--xeth/xeth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index 1ad62a7bf..187aa8c0f 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -311,7 +311,7 @@ func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeSt
nonce := state.GetNonce(from)
tx.SetNonce(nonce)
- sig, err := self.accountManager.Sign(&accounts.Account{Address: from}, tx.Hash())
+ sig, err := self.accountManager.Sign(accounts.Account{Address: from}, tx.Hash())
if err != nil {
return "", err
}