-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] Use frc46_token crate across the board, fix Lotus compat layer. (…
- Loading branch information
Showing
9 changed files
with
32 additions
and
101 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
// Copyright 2019-2022 ChainSafe Systems | ||
// SPDX-License-Identifier: Apache-2.0, MIT | ||
|
||
use frc46_token::token; | ||
use fvm_ipld_encoding::tuple::*; | ||
use fvm_shared3::address::Address; | ||
|
||
use fil_actors_shared::frc46_token; | ||
|
||
#[derive(Debug, Serialize_tuple, Deserialize_tuple)] | ||
pub struct State { | ||
pub governor: Address, | ||
pub token: frc46_token::TokenState, | ||
pub token: token::state::TokenState, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// Copyright 2019-2022 ChainSafe Systems | ||
// SPDX-License-Identifier: Apache-2.0, MIT | ||
|
||
use fil_actors_shared::frc46_token; | ||
use frc46_token::token; | ||
use fvm_ipld_encoding::tuple::*; | ||
use fvm_shared4::address::Address; | ||
|
||
#[derive(Serialize_tuple, Deserialize_tuple, Debug)] | ||
pub struct State { | ||
pub governor: Address, | ||
pub token: frc46_token::TokenState, | ||
pub token: token::state::TokenState, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
// Copyright 2019-2022 ChainSafe Systems | ||
// SPDX-License-Identifier: Apache-2.0, MIT | ||
|
||
use frc46_token::token; | ||
use fvm_ipld_encoding::tuple::*; | ||
use fvm_shared::address::Address; | ||
|
||
use fil_actors_shared::frc46_token; | ||
|
||
#[derive(Debug, Serialize_tuple, Deserialize_tuple)] | ||
pub struct State { | ||
pub governor: Address, | ||
pub token: frc46_token::TokenState, | ||
pub token: token::state::TokenState, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters