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

Reversible vtxo in async payment #311

Merged
merged 30 commits into from
Sep 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
da7ee5e
[server] descriptor-based vtxo script
altafan Sep 11, 2024
4603555
[server] fix unit tests
louisinger Sep 14, 2024
6613642
[sdk] descriptor based vtxo
louisinger Sep 14, 2024
d7d1897
Merge branch master into reversible-vtxo
louisinger Sep 14, 2024
7b409f5
empty config check & version flag support
sekulicd Sep 14, 2024
f787e19
fix: empty config check & version flag support (#309)
sekulicd Sep 14, 2024
53618f0
fix
sekulicd Sep 14, 2024
e78e35f
merge
sekulicd Sep 14, 2024
fb7b33f
Merge pull request #310 from sekulicd/CLI-fix-config
sekulicd Sep 14, 2024
90fa68c
[sdk] several fixes
louisinger Sep 15, 2024
835acce
Merge branch 'master' into reversible-vtxo
louisinger Sep 15, 2024
f42f2db
[sdk][server] several fixes
louisinger Sep 15, 2024
ff12b27
[common][sdk] add reversible VtxoScript type, use it in async payment
louisinger Sep 15, 2024
62d24b3
[common] improve parser
louisinger Sep 16, 2024
51feeff
[common] fix reversible vtxo parser
louisinger Sep 16, 2024
83b509e
[sdk] remove logs
louisinger Sep 16, 2024
0fa96b3
fix forfeit map
louisinger Sep 16, 2024
e8f4559
remove debug log
louisinger Sep 16, 2024
4a8cd82
[sdk] do not allow reversible vtxo script in case of self-transfer
louisinger Sep 16, 2024
1543608
remove signing pubkey
louisinger Sep 16, 2024
81e2f9c
Merge remote-tracking branch origin/master into reversible-vtxo
louisinger Sep 16, 2024
92b5e6f
remove signer public key, craft forfeit txs client side
louisinger Sep 17, 2024
d3679f7
go work sync
louisinger Sep 17, 2024
417a99e
fix linter errors
louisinger Sep 17, 2024
f38a551
rename MakeForfeitTxs to BuildForfeitTxs
louisinger Sep 17, 2024
e1eb784
Merge remote-tracking branch 'origin/master' into reversible-vtxo
louisinger Sep 17, 2024
01f0b73
fix conflicts
louisinger Sep 17, 2024
0f020ab
fix tests
louisinger Sep 18, 2024
f21baad
comment VtxoScript type
louisinger Sep 18, 2024
1a22261
revert ROUND_INTERVAL value
louisinger Sep 18, 2024
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
Prev Previous commit
Next Next commit
fix conflicts
  • Loading branch information
louisinger committed Sep 17, 2024
commit 01f0b73f92399eab7080ce29ad6dafcd33266e75
8 changes: 1 addition & 7 deletions client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,7 @@ func config(ctx *cli.Context) error {
return err
}

cfg := map[string]interface{}{}
if cfgData == nil {
fmt.Println("no configuration found, run 'init' command")
return nil
}

cfg = map[string]interface{}{
cfg := map[string]interface{}{
"asp_url": cfgData.AspUrl,
"asp_pubkey": hex.EncodeToString(cfgData.AspPubkey.SerializeCompressed()),
"wallet_type": cfgData.WalletType,
Expand Down
Loading