mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-09 14:18:03 -05:00
29 lines
787 B
Go
29 lines
787 B
Go
package common
|
|
|
|
import (
|
|
"github.com/noot/atomic-swap/common/types"
|
|
"github.com/noot/atomic-swap/net/message"
|
|
)
|
|
|
|
// SwapState is the interface used by other packages in *xmrtaker.swapState or *xmrmaker.swapState.
|
|
type SwapState interface {
|
|
SwapStateNet
|
|
SwapStateRPC
|
|
}
|
|
|
|
// SwapStateNet handles incoming protocol messages for an initiated protocol.
|
|
// It is implemented by *xmrtaker.swapState and *xmrmaker.swapState
|
|
type SwapStateNet interface {
|
|
HandleProtocolMessage(msg message.Message) (resp message.Message, done bool, err error)
|
|
ID() types.Hash
|
|
Exit() error
|
|
}
|
|
|
|
// SwapStateRPC contains the methods used by the RPC server into the SwapState.
|
|
type SwapStateRPC interface {
|
|
SendKeysMessage() (*message.SendKeysMessage, error)
|
|
ID() types.Hash
|
|
InfoFile() string
|
|
Exit() error
|
|
}
|