aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-17 22:22:35 +0800
committerBas van Kervel <bas@ethdev.com>2015-06-22 15:17:09 +0800
commita4a4e9fcf824189d8d06940492a01effe6e6cf92 (patch)
tree5e7b9cea12d319e4ab1d6ca746102e080259297f /core
parent3e1d635f8d40815ef2262e017a969ed6f5eb2a5d (diff)
downloadgo-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar.gz
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar.bz2
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar.lz
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar.xz
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.tar.zst
go-tangerine-a4a4e9fcf824189d8d06940492a01effe6e6cf92.zip
removed old rpc structure and added new inproc api client
Diffstat (limited to 'core')
-rw-r--r--core/transaction_pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/transaction_pool.go b/core/transaction_pool.go
index 5ebe3576b..34a1733d7 100644
--- a/core/transaction_pool.go
+++ b/core/transaction_pool.go
@@ -149,7 +149,7 @@ func (pool *TxPool) validateTx(tx *types.Transaction) error {
return ErrInvalidSender
}
- // Make sure the account exist. Non existant accounts
+ // Make sure the account exist. Non existent accounts
// haven't got funds and well therefor never pass.
if !pool.currentState().HasAccount(from) {
return ErrNonExistentAccount