Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrPeerNoSettlements = errors.New("no settlements for peer")
)
Functions ¶
This section is empty.
Types ¶
type Accounting ¶ added in v0.6.0
type Accounting interface { PeerDebt(peer swarm.Address) (*big.Int, error) NotifyPaymentReceived(peer swarm.Address, amount *big.Int) error NotifyPaymentSent(peer swarm.Address, amount *big.Int, receivedError error) NotifyRefreshmentReceived(peer swarm.Address, amount *big.Int, timestamp int64) error NotifyRefreshmentSent(peer swarm.Address, attemptedAmount, amount *big.Int, timestamp, interval int64, receivedError error) Connect(peer swarm.Address, fullNode bool) Disconnect(peer swarm.Address) }
type Interface ¶
type Interface interface { // TotalSent returns the total amount sent to a peer TotalSent(peer swarm.Address) (totalSent *big.Int, err error) // TotalReceived returns the total amount received from a peer TotalReceived(peer swarm.Address) (totalSent *big.Int, err error) // SettlementsSent returns sent settlements for each individual known peer SettlementsSent() (map[string]*big.Int, error) // SettlementsReceived returns received settlements for each individual known peer SettlementsReceived() (map[string]*big.Int, error) }
Interface is the interface used by Accounting to trigger settlement
Directories ¶
Path | Synopsis |
---|---|
Package pseudosettle implements a pretend settlement protocol where nodes send pretend payment messages consisting only of the payment amount.
|
Package pseudosettle implements a pretend settlement protocol where nodes send pretend payment messages consisting only of the payment amount. |
Click to show internal directories.
Click to hide internal directories.