diff --git a/crates/interledger-store-redis/src/account.rs b/crates/interledger-store-redis/src/account.rs index 2a99bb256..624e737b6 100644 --- a/crates/interledger-store-redis/src/account.rs +++ b/crates/interledger-store-redis/src/account.rs @@ -382,7 +382,7 @@ impl FromRedisValue for AccountWithEncryptedTokens { RoutingRelation::from_str(relation.as_str()) .map_err(|_| RedisError::from((ErrorKind::TypeError, "Invalid Routing Relation")))? } else { - RoutingRelation::Child + RoutingRelation::NonRoutingAccount }; let round_trip_time: Option = get_value_option("round_trip_time", &hash)?; let round_trip_time: u32 = round_trip_time.unwrap_or(DEFAULT_ROUND_TRIP_TIME);