lightning-engine
lightning-engine copied to clipboard
一套高性能的、纯内存撮合的数字货币交易所撮合系统。
Results
2
lightning-engine issues
Sort by
recently updated
recently updated
newest added
add example to run sever and client
下面是测试代码 ``` package main import ( "fmt" "github.com/shopspring/decimal" mainlog "lightning-engine/log" skiplist2 "lightning-engine/pqueue/skiplist" "strconv" ) type entrust struct { Id string Amount decimal.Decimal } func (e *entrust) GetId() string { return...