forest_actor 5.0.1

Actors for the Filecoin protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2019-2022 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT

use address::Address;
use encoding::{tuple::*, Cbor};

/// State includes the address for the actor
#[derive(Serialize_tuple, Deserialize_tuple)]
pub struct State {
    pub address: Address,
}

impl Cbor for State {}