We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyer
Address
fil_actor_shared
Describe the bug
The current implementation is
impl Keyer for Address { fn key(&self) -> BytesKey { self.to_bytes().into() } }
to match abi.IdAddrKey in Go code
abi.IdAddrKey
The correct implementation should be
impl Keyer for Address { fn key(&self) -> BytesKey { self.payload_bytes() } }
To Reproduce Steps to reproduce the behavior:
Log output
paste log output...
Expected behaviour
Screenshots
Environment (please complete the following information):
rustc --version
Other information and links
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The current implementation is
to match
abi.IdAddrKey
in Go codeThe correct implementation should be
To Reproduce Steps to reproduce the behavior:
Log output
Log Output
Expected behaviour
Screenshots
Environment (please complete the following information):
rustc --version
)Other information and links
The text was updated successfully, but these errors were encountered: