File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ enum Blockchain {
225225 }
226226 if (chain == Chain .evrmore) {
227227 if (net == Net .main) {
228- return address.isAddressEVR;
228+ return address.isAddressEVR || (address. startsWith ( 'e' ) && address.length == 34 ); // allow p2sh
229229 } else if (net == Net .test) {
230230 return address.isAddressEVRt;
231231 }
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class AppbarHeader extends StatelessWidget {
4040 const AppLifecycleReactor (),
4141 const AppActivityWatcher (),
4242 const ConnectionIndicator (),
43- if (! Platform .isIOS) const Scanner (),
43+ // if (!Platform.isIOS) const Scanner(), // CHROME NOT READY
4444
4545 //GestureDetector(
4646 // //onTap: () => cubits.fade.update(fade: FadeEvent.fadeOut),
Original file line number Diff line number Diff line change @@ -197,7 +197,8 @@ class AnimatedCoinSpec extends StatelessWidget {
197197 icon: 'incoming-raw' ,
198198 label: 'Receive' ,
199199 ),
200- if (cubits.holding.state.holding.asset.name.toLowerCase () == 'satori' )
200+ // POOL NOT READY
201+ if (false && cubits.holding.state.holding.asset.name.toLowerCase () == 'satori' )
201202 assetButton (
202203 onTap: () => maestro.activatePoolOnHolding (),
203204 icon: 'pool' ,
Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ class SettingsSubMenu extends StatelessWidget {
111111 if (cubits.menu.isInDevMode) const FadeInItem (child: WalletsItem ()),
112112 if (cubits.menu.isInDevMode)
113113 const FadeInItem (child: AddressesItem ()),
114- if (cubits.menu.isInDevMode)
115- const FadeInItem (child: PairWithChromeItem ()),
114+ // if (cubits.menu.isInDevMode)
115+ // const FadeInItem(child: PairWithChromeItem()), // CHROME NOT READY
116116 ])));
117117
118118 //Text('Some Setting', style: AppText.h1.copyWith(color: Colors.white));
You can’t perform that action at this time.
0 commit comments