2019-07-13 11:50:24
did a new bazel break things again?
Rotonen
2019-07-13 12:04:35
oh, checked out 1.0.5 instead of 1.5.1 :stuck_out_tongue:
Rotonen
2019-07-13 12:07:12
though now bazel fails to fetch dependencies as their mirror gives me 404 and timeouts
Rotonen
2019-07-13 12:09:37
oh well, `until bash build2.sh; do reset && sleep 10; done`
Rotonen
2019-07-13 12:22:45
what's the trick with iceleaf?
```
ERROR: /Users/<redacted>/snowblossom/BUILD:78:1: Error expanding template '//:IceLeaf' failed due to unexpected I/O exception: /private/var/tmp/_bazel_<redacted>/2391218fc7f5bacc7016e435e54845de/execroot/__main__/bazel-out/darwin-fastbuild/bin/IceLeaf (Is a directory)
```
Rotonen
2019-07-13 13:39:24
which bazel version?
Fireduck
2019-07-13 13:41:11
bazel build :IceLeaf_deploy.jar
Fireduck
2019-07-13 13:53:28
bazel build :all :IceLeaf_deploy.jar :IceLeafTestnet_deploy.jar && bazel test ...
Fireduck
2019-07-13 13:53:36
that is my command line for this mess
Fireduck
2019-07-13 13:53:48
$ bazel version
Build label: 0.27.0
Fireduck
2019-07-13 15:10:42
```
$ bazel --version
bazel 0.27.2-homebrew
```
Rotonen
2019-07-13 15:10:58
should be fine
Fireduck
2019-07-13 15:11:00
for a mac user
Fireduck
2019-07-13 15:11:17
but I haven't tested building on mac
Fireduck
2019-07-13 15:25:55
Oh, i think I did that thing again with the directory with the same name as the package
Fireduck
2019-07-13 15:26:05
I did that with Shackleton
Fireduck
2019-07-13 17:30:28
*https://github.com/snowblossomcoin/snowblossom/compare/7370afae2ad8...a8e816f468ba*
https://github.com/snowblossomcoin/snowblossom/commit/a8e816f468ba9dcf46be577ad784d5097308e836 - Rename to fix mac build issue
GitHub
2019-07-13 17:30:35
@Rotonen can you try now?
Fireduck
2019-07-13 17:30:46
It is something about case-insensitive file systems I think
Fireduck
2019-07-13 17:33:57
*https://github.com/snowblossomcoin/snowblossom/compare/a8e816f468ba...77c7d9c1d243*
https://github.com/snowblossomcoin/snowblossom/commit/77c7d9c1d243a8dcb5cad9442b06429ef898b2ea - Fix resource location
GitHub
2019-07-13 17:35:35
@Fireduck confirming building works now
Rotonen
2019-07-13 17:36:56
awesome, thanks
Fireduck
2019-07-13 17:38:35
in case you also want a 'build all' script
```
#!/usr/bin/env bash
bazel clean
for target in $(grep name BUILD | cut -d'"' -f2)
do
jar_name="$target"_deploy.jar
bazel build ":$jar_name"
mv bazel-bin/"$jar_name" "$jar_name"
done
# EOF
```
Rotonen
2019-07-13 17:39:11
Some of those are not especially useful
Fireduck
2019-07-13 17:40:02
after selecting 'run local node', one needs to restart?
Rotonen
2019-07-13 17:40:05
trying the testnet out
Rotonen
2019-07-13 17:40:10
yeah
Fireduck
2019-07-13 17:40:15
I should make that clear
Fireduck
2019-07-13 17:40:42
is qhard also hd?
Rotonen
2019-07-13 17:40:49
nope
Fireduck
2019-07-13 17:41:16
I don't have a way to deterministicly generate RSA keys.
Fireduck
2019-07-13 17:41:29
I *think* it is doable but I haven't messed with it much
Fireduck
2019-07-13 17:41:46
it's a bit confusing and async how the tabs work immediately after making a wallet
Rotonen
2019-07-13 17:41:49
it scares me that there is probably some float operation in the prime evaluation that would be platform specific
Fireduck
2019-07-13 17:42:23
want some testnet snow?
Fireduck
2019-07-13 17:43:26
was going to the faucet, but that seems to be down http://testnet.snowblossom-explorer.org/
Rotonen
2019-07-13 17:43:35
snowtest:zkum75f9408wwl3sxq27jjkdw4c2q4aj33d232d9
Rotonen
2019-07-13 17:44:22
in the send ui, make 'all' a tickbox which disables the input field
Rotonen
2019-07-13 17:45:04
also the ui somehow makes me think it's not auto updating, while it is :smile:
Rotonen
2019-07-13 17:45:09
love the colors
Rotonen
2019-07-13 17:45:31
and your app icon is the horrifyingly 'friendly' 90s java default
Rotonen
2019-07-13 17:46:18
yeah, Mac java seems to ignore my icon setting
Fireduck
2019-07-13 17:47:29
as you might expect, it's a plist
Rotonen
2019-07-13 17:52:38
I can make a bunch of these updates smoother once I have notifications working
Fireduck
2019-07-13 17:52:56
so it can be grpc async rather than polling for transaction changes
Fireduck
2019-07-13 17:54:20
sure, important stuff first
Rotonen
2019-07-13 17:55:03
yeah..still missing watch only wallets, especially for seed wallets via xpub
Fireduck
2019-07-13 17:59:04
*https://github.com/snowblossomcoin/snowblossom/compare/77c7d9c1d243...a9243f9f185f*
https://github.com/snowblossomcoin/snowblossom/commit/a9243f9f185ff0f7b8e617abe739fcdfdbcf7f10 - Minor UI look tweaks
GitHub
2019-07-13 17:59:50
*https://github.com/snowblossomcoin/snowblossom/compare/a9243f9f185f...fb1a11c7f971*
https://github.com/snowblossomcoin/snowblossom/commit/fb1a11c7f971df865402248efceb1f11b9e363f0 - Send time delay from 10 seconds to 6 seconds.
GitHub