fix: BlockNumberAddress related doc and namings (#6732)

This commit is contained in:
makcandrov
2024-02-22 14:25:22 +04:00
committed by GitHub
parent a4c034903b
commit ca98261d43
4 changed files with 15 additions and 15 deletions

View File

@ -73,7 +73,7 @@ impl BlockNumberAddress {
(*range.start(), Address::ZERO).into()..(*range.end() + 1, Address::ZERO).into()
}
/// Return the transition id
/// Return the block number
pub fn block_number(&self) -> BlockNumber {
self.0 .0
}
@ -99,12 +99,12 @@ impl Encode for BlockNumberAddress {
type Encoded = [u8; 28];
fn encode(self) -> Self::Encoded {
let tx = self.0 .0;
let block_number = self.0 .0;
let address = self.0 .1;
let mut buf = [0u8; 28];
buf[..8].copy_from_slice(&tx.to_be_bytes());
buf[..8].copy_from_slice(&block_number.to_be_bytes());
buf[8..].copy_from_slice(address.as_slice());
buf
}
@ -129,7 +129,7 @@ mod tests {
use std::str::FromStr;
#[test]
fn test_tx_number_address() {
fn test_block_number_address() {
let num = 1u64;
let hash = Address::from_str("ba5e000000000000000000000000000000000000").unwrap();
let key = BlockNumberAddress((num, hash));
@ -146,7 +146,7 @@ mod tests {
}
#[test]
fn test_tx_number_address_rand() {
fn test_block_number_address_rand() {
let mut bytes = [0u8; 28];
thread_rng().fill(bytes.as_mut_slice());
let key = BlockNumberAddress::arbitrary(&mut Unstructured::new(&bytes)).unwrap();