Skip to content

Commit

Permalink
impl TryFrom<U256> for Chain (gakonst#1247)
Browse files Browse the repository at this point in the history
  • Loading branch information
recmo committed May 11, 2022
1 parent 847110a commit 98fc8c8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion ethers-core/src/types/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use serde::Deserialize;
use thiserror::Error;

use core::convert::TryFrom;
use std::{default, fmt, str::FromStr};
use std::{convert::TryInto, default, fmt, str::FromStr};

use crate::types::U256;

Expand Down Expand Up @@ -128,6 +128,17 @@ impl TryFrom<u64> for Chain {
}
}

impl TryFrom<U256> for Chain {
type Error = ParseChainError;

fn try_from(chain: U256) -> Result<Chain, Self::Error> {
if chain.bits() > 64 {
return Err(ParseChainError(chain.to_string()))
}
chain.as_u64().try_into()
}
}

impl FromStr for Chain {
type Err = ParseChainError;
fn from_str(chain: &str) -> Result<Self, Self::Err> {
Expand Down

0 comments on commit 98fc8c8

Please sign in to comment.