-
Notifications
You must be signed in to change notification settings - Fork 670
/
addressed_call.go
53 lines (44 loc) · 1.38 KB
/
addressed_call.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package payload
import "fmt"
var _ Payload = (*AddressedCall)(nil)
// AddressedCall defines the format for delivering a call across VMs including a
// source address and a payload.
//
// Note: If a destination address is expected, it should be encoded in the
// payload.
type AddressedCall struct {
SourceAddress []byte `serialize:"true"`
Payload []byte `serialize:"true"`
bytes []byte
}
// NewAddressedCall creates a new *AddressedCall and initializes it.
func NewAddressedCall(sourceAddress []byte, payload []byte) (*AddressedCall, error) {
ap := &AddressedCall{
SourceAddress: sourceAddress,
Payload: payload,
}
return ap, initialize(ap)
}
// ParseAddressedCall converts a slice of bytes into an initialized
// AddressedCall.
func ParseAddressedCall(b []byte) (*AddressedCall, error) {
payloadIntf, err := Parse(b)
if err != nil {
return nil, err
}
payload, ok := payloadIntf.(*AddressedCall)
if !ok {
return nil, fmt.Errorf("%w: %T", errWrongType, payloadIntf)
}
return payload, nil
}
// Bytes returns the binary representation of this payload. It assumes that the
// payload is initialized from either NewAddressedCall or Parse.
func (a *AddressedCall) Bytes() []byte {
return a.bytes
}
func (a *AddressedCall) initialize(bytes []byte) {
a.bytes = bytes
}