Closed rhinodavid closed 3 years ago
Both Uint and Int are aliased to ethereum_types::U256, but semantically it seems like the associated data for Token::Int should be an Int.
Uint
Int
ethereum_types::U256
Token::Int
Note that
pub type Int = ethereum_types::U256;
This change is definitely correct though.
Both
Uint
andInt
are aliased toethereum_types::U256
, but semantically it seems like the associated data forToken::Int
should be anInt
.