diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-26 10:00:31 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:57 +0800 |
commit | 8295920c8398fba7106e5e97256e7e58c9214c94 (patch) | |
tree | ee796543b59eb44559105220fe40a858aed65abb /internal | |
parent | 7d3d9d7e6167327d86ba58009b3bb00c857c1b0e (diff) | |
download | dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar.gz dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar.bz2 dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar.lz dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar.xz dexon-8295920c8398fba7106e5e97256e7e58c9214c94.tar.zst dexon-8295920c8398fba7106e5e97256e7e58c9214c94.zip |
core: various changes on tps tuning (#46)
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 3dec0b114..a0b79329c 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1290,6 +1290,7 @@ func submitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (c // submitTransactions is a helper function that submits batch of tx to txPool and logs a message. func submitTransactions(ctx context.Context, b Backend, txs []*types.Transaction) ([]common.Hash, error) { + types.GlobalSigCache.Add(types.NewEIP155Signer(b.ChainConfig().ChainID), txs) errs := b.SendTxs(ctx, txs) var hashes []common.Hash for i, err := range errs { |