mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +00:00
11 lines
276 B
Go
11 lines
276 B
Go
package flowcontext
|
|
|
|
import (
|
|
"github.com/fabbez/topiad/infrastructure/network/addressmanager"
|
|
)
|
|
|
|
// AddressManager returns the address manager associated to the flow context.
|
|
func (f *FlowContext) AddressManager() *addressmanager.AddressManager {
|
|
return f.addressManager
|
|
}
|