mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-19 08:14:15 +00:00
14 lines
348 B
Go
14 lines
348 B
Go
|
package sharding
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// listenTXPool finds the pending tx's from the running geth node
|
||
|
// and sorts them by descending order of gas price, eliminates those
|
||
|
// that ask for too much gas, and routes them over to the VMC if the current
|
||
|
// node is a collator
|
||
|
func listenTXPool(c *Client) error {
|
||
|
return fmt.Errorf("Not Implemented")
|
||
|
}
|