Skip to content
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

Fix asset path #29

Closed
obscuren opened this issue Mar 16, 2014 · 3 comments
Closed

Fix asset path #29

obscuren opened this issue Mar 16, 2014 · 3 comments

Comments

@obscuren
Copy link
Contributor

#25

@o-jasper
Copy link

Still getting:

2014/05/29 01:13:41 [GUI] Starting GUI
2014/05/29 01:13:41 FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'
panic: open /usr/share/ethereal/qml/wallet.qml: no such file or directory

(git log | grep 85e0447 does list the commit.) Looking at the diff it seems this is for the development, what if you want a user-level install? Can you get the executable location? If that is /bin/ or /usr/bin/ it is installed as root, otherwise, work from GOPATH? Or use a configuration file, and simply tell people who want it userlevel to edit it. Or something else :)

@obscuren
Copy link
Contributor Author

You can always set the asset path with -asset_path. As for development (because Go doesn't have a pre processor, execute from $GOPATH/src/github.com/ethereum/go-ethereum/ethereal

@o-jasper
Copy link

Thanks for the response. Nothing wrong with, already added a script in ~/.bin/ethereal to do so for me.

Arachnid pushed a commit to Arachnid/go-ethereum that referenced this issue May 5, 2016
Emphasis on the two distinct cases of long-term storage.
AusIV pushed a commit to NoteGio/go-ethereum that referenced this issue Feb 20, 2020
fjl pushed a commit to fjl/go-ethereum that referenced this issue Jul 21, 2020
fjl pushed a commit to fjl/go-ethereum that referenced this issue Jul 24, 2020
i-norden referenced this issue in cerc-io/go-ethereum Sep 25, 2020
#29)

* adding action to publish image to dockerhub on merge to testnet
rjl493456442 added a commit to rjl493456442/go-ethereum that referenced this issue Feb 2, 2021
* add robot monitor feature

* print type

* Update sender.go

Co-authored-by: Huan Yu <yuhuan@hyperchain.cn>
Co-authored-by: Abner Zheng <abnerzheng@gmail.com>
Co-authored-by: gary rong <garyrong0905@gmail.com>
recmo pushed a commit to recmo/go-ethereum that referenced this issue Feb 17, 2021
hadv pushed a commit to hadv/go-ethereum that referenced this issue Jul 14, 2022
trie: prunning old state trie node on disk
protolambda pushed a commit to protolambda/go-ethereum that referenced this issue Jan 26, 2023
I modified the ethash version of the test to iterate over `block`
rather than `preBlocks` when it was computing the total difficulty
of the merge point. This is in line with the isClique version of
test & avoids an issue where the td was 0 (i.e. a genesis transition)
rather than occurring after the preBlocks and before the postBlocks.
weiihann pushed a commit to weiihann/go-ethereum that referenced this issue Feb 23, 2023
neraty pushed a commit to gnosis/go-ethereum that referenced this issue Mar 13, 2023
* do not fetch bundle if empty block num during the startup
neraty pushed a commit to gnosis/go-ethereum that referenced this issue Apr 3, 2023
* do not fetch bundle if empty block num during the startup
shampoobera referenced this issue in berachain/polaris-geth May 30, 2023
# This is the 1st commit message:

params: release Geth v1.11.2

# This is the commit message #2:

stateful

# This is the commit message #3:

use PrecompileExecutor

# This is the commit message #4:

use host terminology

# This is the commit message #5:

return precompiledContract and bool

# This is the commit message #6:

use ctx in Run instead of statedb

# This is the commit message #7:

change to ph

# This is the commit message #8:

bing bong

# This is the commit message #9:

rename to runner

# This is the commit message #10:

rename constructor

# This is the commit message #11:

new precompile function types

# This is the commit message #12:

precompile controller

# This is the commit message #13:

make PrecompileController public

# This is the commit message #14:

ctx setter

# This is the commit message #15:

add statedb in contract.Run

# This is the commit message #16:

use Prepare on controller

# This is the commit message #17:

prepare for state transition

# This is the commit message #18:

contract has registry key

# This is the commit message #19:

has and get

# This is the commit message #20:

controller > manager

# This is the commit message #21:

with statedb

# This is the commit message #22:

with ctx

# This is the commit message #23:

simple precompile manager

# This is the commit message #24:

allow setting block context to evm

# This is the commit message #25:

remove unneded evm funcs

# This is the commit message #26:

simplify precompile manager

# This is the commit message #27:

updated go.sum

# This is the commit message #28:

removing extra bits

# This is the commit message #29:

typo fixes

# This is the commit message #30:

ethapi

# This is the commit message #31:

cleanup precomp manager

# This is the commit message #32:

add get chain id

# This is the commit message #33:

make access list public

# This is the commit message #34:

make access list struct public

# This is the commit message #35:

fix typos

# This is the commit message #36:

ethpub

# This is the commit message #37:

use the StateDB interface in the API

# This is the commit message ethereum#38:

make compatible

# This is the commit message ethereum#39:

fixed merge conflicts

# This is the commit message ethereum#40:

remove unecessary vm imports

# This is the commit message ethereum#41:

add signature to signer interface

# This is the commit message ethereum#42:

params: begin v.1.11.3 release cycle

# This is the commit message ethereum#43:

log: improve documentation (ethereum#26753)

Add usage examples
# This is the commit message ethereum#44:

core/rawdb, node: use standalone flock dependency (ethereum#26633)


# This is the commit message ethereum#45:

eth: use the last announced finalized block as the sync ancient limit (ethereum#26685)


# This is the commit message ethereum#46:

ci: disable coverage reporting in appveyor and travis

# This is the commit message ethereum#47:

cmd/devp2p: faster crawling + less verbose dns updates (ethereum#26697)

This improves the speed of DHT crawling by using concurrent requests.
It also removes logging of individual DNS updates.

# This is the commit message ethereum#48:

eth/tracers: add native flatCallTracer (aka parity style tracer) (ethereum#26377)

Adds support for a native call tracer with the Parity format, which outputs call frames
in a flat array. This tracer accepts the following options:

- `convertParityErrors: true` will convert error messages to match those of Parity
- `includePrecompiles: true` will report all calls to precompiles. The default
  matches Parity's behavior where CALL and STATICCALLs to precompiles are excluded

Incompatibilities with Parity include:

- Parity removes the result object in case of failure. This behavior is maintained
  with the exception of reverts. Revert output usually contains useful information,
  i.e. Solidity revert reason.
- The `gasUsed` field accounts for intrinsic gas (e.g. 21000 for simple transfers)
  and refunds unlike Parity
- Block rewards are not reported

Co-authored-by: Sina Mahmoodi <itz.s1na@gmail.com>
# This is the commit message ethereum#49:

core: improve withdrawal index assignment in GenerateChain (ethereum#26756)

This fixes an issue where the withdrawal index was not calculated correctly
for multiple withdrawals in a single block.

Co-authored-by: Gary Rong <garyrong0905@gmail.com>
Co-authored-by: Felix Lange <fjl@twurst.com>
# This is the commit message ethereum#50:

ethdb/pebble: fix range compaction (ethereum#26771)

* ethdb/pebble: fix range compaction

* ethdb/pebble: add comment
# This is the commit message ethereum#51:

ethdb/pebble: fix max memorytable size (ethereum#26776)


# This is the commit message ethereum#52:

ethclient: include withdrawals in ethclient block responses (ethereum#26778)

* include withdrawals in ethclient responses

* omit empty withdrawals array in json serialization
sbellem pushed a commit to sbellem/go-ethereum that referenced this issue Jul 25, 2023
maoueh pushed a commit to streamingfast/go-ethereum that referenced this issue Mar 18, 2024
* remove i386 linux tests

* test: fix building of tests

* return empty logs instead of nil in receipts

* keep InitialBaseFee same with geth, so not break a ton of cases

* fix eth dir

* fix subdir of core

* fix subdir of eth

* fix cmd/geth dir

* fix ethtest by adding UpgradeStatusMsg when handshake

* fix ethclient_test.go

* fix ethclient/simulated

* fix internal

* fix graphql

* fix consensus

* fix accounts

* fix log

* fix p2p

* fix metrics

* fix tests dir

* fix golangci-lint

---------

Co-authored-by: Matus Kysel <matus.kysel@bnbchain.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants