-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
feat: reown on nano contracts #601
Conversation
9115c8e
to
e1bb3c7
Compare
@@ -130,12 +130,15 @@ function* isReownEnabled() { | |||
} | |||
|
|||
function* init() { | |||
const walletStartState = yield select((state) => state.walletStartState); | |||
|
|||
if (walletStartState !== WALLET_STATUS.READY) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chore: We can remove WALLET_STATUS
from the imports (line 75) since we removed the only places where it was being read.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks
src/sagas/wallet.js
Outdated
@@ -254,10 +254,14 @@ export function* startWallet(action) { | |||
yield put(setUniqueDeviceId(uniqueDeviceId)); | |||
|
|||
try { | |||
yield call(wallet.start.bind(wallet), { | |||
// XXX: This comes as undefined when the facede is the wallet-service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// XXX: This comes as undefined when the facede is the wallet-service. | |
// XXX: This comes as undefined when the facade is the wallet-service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks
25ba554
to
12d067c
Compare
12d067c
to
bf83166
Compare
Acceptance Criteria
Security Checklist