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

Nkn.. #982

Open
wants to merge 30 commits into
base: dependabot/npm_and_yarn/dashboard/web/babel/traverse-7.23.5
Choose a base branch
from
Open

Nkn.. #982

Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
899f99f
Bump golang.org/x/net from 0.10.0 to 0.17.0
dependabot[bot] Dec 7, 2023
f9e7211
Bump golang.org/x/crypto from 0.14.0 to 0.17.0
dependabot[bot] Dec 18, 2023
2485e65
Bump crypto-js from 4.1.1 to 4.2.0 in /dashboard/web
dependabot[bot] Dec 7, 2023
fd3048c
Bump ip from 1.1.5 to 1.1.9 in /dashboard/web
dependabot[bot] Feb 21, 2024
4fd555c
Change ci badge from travis-ci to github actions
yilunzhang Feb 29, 2024
9afba59
Regenerate dashboard yarn.lock using official npm registry
yilunzhang Feb 29, 2024
c9773e8
fix findSuccessorAddrs has wrong params in comment
yilunzhang Mar 8, 2024
6edd104
Support WebRTC communication
billfort Apr 17, 2024
4d09045
Bump golang.org/x/net from 0.17.0 to 0.23.0
dependabot[bot] Apr 27, 2024
a65026f
Bump google.golang.org/protobuf from 1.30.0 to 1.33.0
dependabot[bot] Mar 13, 2024
d8381da
make config.json optional
yilunzhang May 8, 2024
f6a5802
reduce webrtc error log lvl
yilunzhang May 8, 2024
bbd586f
gofmt
yilunzhang May 8, 2024
24ade56
Add OnOfferConnected channel for synchronize connected event for client
billfort May 9, 2024
4906690
Check if nil before close WebRTC channels
billfort May 10, 2024
3952311
remove some debug log
yilunzhang May 10, 2024
d66c4b3
bump NetVersionNum
yilunzhang May 14, 2024
dff2b99
fix make docker not building amd64 image when running on arm
yilunzhang May 15, 2024
3dfea7c
fix MarshalJSON undefined for non-pointer Uint160
yilunzhang May 19, 2024
3956f06
increase default LowFeeTxnSizePerBlock to 8192
yilunzhang May 24, 2024
c2862f2
increase default rpc client timeout
yilunzhang Jul 15, 2024
c6185d7
chore: fix some function names
mountdisk Aug 16, 2024
6eecd7e
replace github.com/golang/protobuf with google.golang.org/protobuf
nbdy Sep 26, 2024
f69f0f3
regenerated with newer version
nbdy Sep 26, 2024
761f255
remove redundant alias
nbdy Sep 26, 2024
0cec1eb
adjust to nnet changes
nbdy Sep 26, 2024
f7f8a03
dependency bumps
nbdy Sep 26, 2024
741b0f8
use latest nnet
nbdy Sep 28, 2024
e2b4ca6
fix dependency/github workflow compatibility with go 1.20
yilunzhang Sep 28, 2024
69ca3e4
Create devcontainer.json
hmd123pm Dec 2, 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 findSuccessorAddrs has wrong params in comment
Signed-off-by: Yilun <zyl.skysniper@gmail.com>
  • Loading branch information
yilunzhang committed Mar 8, 2024
commit c9773e84e67ccd886f017a22051b8ad645bd26d5
2 changes: 1 addition & 1 deletion api/common/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ func getMyExtIP(s Serverer, params map[string]interface{}, ctx context.Context)
}

// findSuccessorAddrs find the successors of a key
// params: {"address":<address>}
// params: {"key":<key>}
// return: {"resultOrData":<result>|<error data>, "error":<errcode>}
func findSuccessorAddrs(s Serverer, params map[string]interface{}, ctx context.Context) map[string]interface{} {
if len(params) < 1 {
Expand Down
Loading