mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-29 12:15:43 +03:00
converting iron and zinc cores to lead bug
In the current release candidate, this happens: ``` > ^?(^|(add)) wrap-gold ford: %slim failed: ford: %ride failed to compute type: ``` This is a jet mismatch from `+wrap`, I believe: https://github.com/urbit/arvo/blob/release-candidate/sys/hoon.hoon#L11139 You should be able to convert iron and zinc cores to lead.
This commit is contained in:
parent
15f72cd435
commit
a8fbd49864
@ -41,8 +41,9 @@
|
|||||||
if ( c3n == u3r_trel(pq_sut, &ppq_sut, &qpq_sut, &rpq_sut) ) {
|
if ( c3n == u3r_trel(pq_sut, &ppq_sut, &qpq_sut, &rpq_sut) ) {
|
||||||
return u3m_bail(c3__fail);
|
return u3m_bail(c3__fail);
|
||||||
}
|
}
|
||||||
else if ( c3__gold != rpq_sut ) {
|
else if ( (c3__gold != rpq_sut) &&
|
||||||
return u3m_error("wrap-gold");
|
(c3__lead != yoz) ) {
|
||||||
|
return u3m_error("wrap-metal");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return u3nt(c3__core,
|
return u3nt(c3__core,
|
||||||
|
Loading…
Reference in New Issue
Block a user