You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pub struct Account { pub nonce: U256, ... }
But in go ethereum, it is type Account struct { Nonce uint64 ... }
looks like 24 bytes are wasted, is this intended? why?
The text was updated successfully, but these errors were encountered:
pub struct Account { pub nonce: U256, ... }
But in go ethereum, it is
type Account struct { Nonce uint64 ... }
looks like 24 bytes are wasted, is this intended? why?
The text was updated successfully, but these errors were encountered: