mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-26 15:35:55 +00:00
Just some name changes, put in a stand in emission amount, and started copying the algo from Karlsen. Not release worthy yet. Therefore Dev branch exists now. Also, for now this is for research purposes only. I got no clue what to build on top of Kaspa yet. Help would be appreciated for ideas and implementations.
11 lines
209 B
Go
11 lines
209 B
Go
package flowcontext
|
|
|
|
import (
|
|
"github.com/zoomy-network/zoomyd/domain"
|
|
)
|
|
|
|
// Domain returns the Domain object associated to the flow context.
|
|
func (f *FlowContext) Domain() domain.Domain {
|
|
return f.domain
|
|
}
|