mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
3e35aaea76
Former-commit-id: ce9c444b973f4c856987e3393b76dceb4676bb10 [formerly 89fc90106f425a943ee1c556b0904eff5c96dda4] Former-commit-id: c3a97c1421c394b9aaa15aaecdb2dd7a1aea75a2
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")
|
|
}
|