payment

package
v0.15.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 23, 2024 License: ISC Imports: 29 Imported by: 0

Documentation

Overview

Package payment - control of payment verification

Index

Constants

View Source
const (
	// MinimumNonceLength - least number of bytes in NONCE
	MinimumNonceLength = 8
	// MaximumNonceLength - most number of bytes in NONCE
	MaximumNonceLength = 64
)
View Source
const HeaderSyncTimeout = time.Minute
View Source
const MaximumOutboundPeers = 32
View Source
const PaymentExpiry = 12 * time.Hour

Variables

This section is empty.

Functions

func Finalise added in v0.2.0

func Finalise() error

Finalise - stop all background tasks

func Initialise added in v0.2.0

func Initialise(configuration *Configuration) error

Initialise - setup the payment system

Types

type Configuration added in v0.2.0

type Configuration struct {
	AutoVerify     bool                        `gluamapper:"auto_verify" json:"auto_verify"`
	Mode           string                      `gluamapper:"mode" json:"mode"`
	P2PCache       P2PCache                    `gluamapper:"p2p_cache" json:"p2p_cache"`
	BootstrapNodes bootstrapNodesConfiguration `gluamapper:"bootstrap_nodes" json:"bootstrap_nodes"`
	Bitcoin        *currencyConfiguration      `gluamapper:"bitcoin" json:"bitcoin"`
	Litecoin       *currencyConfiguration      `gluamapper:"litecoin" json:"litecoin"`
}

Configuration - structure for configuration file

type P2PCache added in v0.12.4

type P2PCache struct {
	BtcDirectory string `gluamapper:"btc_directory" json:"btc_directory"`
	LtcDirectory string `gluamapper:"ltc_directory" json:"ltc_directory"`
}

type PeerMap added in v0.12.0

type PeerMap struct {
	// contains filtered or unexported fields
}

PeerMap is a map that maintains the pair between addresses and bitcoin peers in a thread-safe way.

func NewPeerMap added in v0.12.0

func NewPeerMap() *PeerMap

func (*PeerMap) Add added in v0.12.0

func (m *PeerMap) Add(addr string, p *peer.Peer)

Add will add a new peer into the map.

func (*PeerMap) Delete added in v0.12.0

func (m *PeerMap) Delete(addr string)

Delete will remove a peer by its address.

func (*PeerMap) Exist added in v0.12.0

func (m *PeerMap) Exist(addr string) bool

Exist validate whether an address is in the map.

func (*PeerMap) First added in v0.12.0

func (m *PeerMap) First() (p *peer.Peer)

First will return the first peer get from the map iteration. Due to the nature of map in golang, the item is random without fixed order.

func (*PeerMap) Get added in v0.12.0

func (m *PeerMap) Get(addr string) (p *peer.Peer)

Get will return a specific peer from the map.

func (*PeerMap) Len added in v0.12.0

func (m *PeerMap) Len() int

Len returns the len of current map.

func (*PeerMap) Range added in v0.12.0

func (m *PeerMap) Range(callback func(key string, value *peer.Peer))

Range is a wrapper function of the map iteration.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL