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

add DirectPost support & upgrade meson version #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions cmd/wallet/wallet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ DefaultChainID = 5
CaseSensitiveUserIdentifiers = false
PollingInterval = 100
[Meson.Katzenmint]
ChainID = "test-chain-QvpdAC"
PrimaryAddress = "tcp://127.0.0.1:20017"
WitnessesAddresses = ["127.0.0.1:20017"]
DatabaseName = "wallet_db"
DatabaseDir = "/tmp/meson-wallet/db"
RPCAddress = "tcp://127.0.0.1:20017"
ChainID = "katzenmint-chain-71DRoz"
PrimaryAddress = "tcp://127.0.0.1:21483"
WitnessesAddresses = ["127.0.0.1:21483"]
DatabaseName = "ping"
DatabaseDir = "/tmp/meson/ping/db"
RPCAddress = "tcp://127.0.0.1:21483"
[Meson.Katzenmint.TrustOptions]
Period = 600000000000
Height = 1
Hash = [127, 220, 217, 253, 88, 37, 197, 138, 103, 235, 93, 91, 74, 27, 29, 57, 110, 46, 119, 231, 15, 29, 149, 61, 165, 45, 132, 61, 134, 32, 151, 36]
Height = 169753
Hash = [14, 124, 242, 69, 11, 252, 40, 58, 102, 162, 134, 0, 68, 106, 229, 162, 11, 99, 255, 147, 129, 38, 57, 219, 7, 131, 254, 224, 11, 182, 119, 227]
11 changes: 5 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ module github.com/hashcloak/Meson-wallet-demo
go 1.13

require (
github.com/BurntSushi/toml v1.0.0
github.com/BurntSushi/toml v1.2.0
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/ethereum/go-ethereum v1.10.14
github.com/google/uuid v1.2.0 // indirect
github.com/hashcloak/Meson v0.0.0-20220415224108-b4b3e31005eb
github.com/tklauser/go-sysconf v0.3.7 // indirect
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171
github.com/ethereum/go-ethereum v1.11.5
github.com/hashcloak/Meson v0.0.0-20230305143916-1a709df0c800 // indirect
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
golang.org/x/term v0.6.0
)
Loading