(ctx context.Context, signedTx *types.Transaction)
| 173 | } |
| 174 | |
| 175 | func (b *APIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error { |
| 176 | return b.cpc.txPool.AddLocal(signedTx) |
| 177 | } |
| 178 | |
| 179 | func (b *APIBackend) GetPoolTransactions() (types.Transactions, error) { |
| 180 | pending, err := b.cpc.txPool.Pending() |