Skip to content

Commit a128b38

Browse files
authored
chore: increase max content length (#108)
* max content len * changelog
1 parent d6de650 commit a128b38

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4242
- [#107](https://github.com/babylonlabs-io/covenant-emulator/pull/107) crypto: replace dcrd fork with btcd fork
4343
with crypto fix
4444
- [#106](https://github.com/babylonlabs-io/covenant-emulator/pull/106) crypto: use dcrd fork with crypto fix
45+
- [#108](https://github.com/babylonlabs-io/covenant-emulator/pull/108) chore: increase max content length
4546

4647
## v0.12.0
4748

covenant-signer/config/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ func DefaultServerConfig() *ServerConfig {
3939
WriteTimeout: 15,
4040
ReadTimeout: 15,
4141
IdleTimeout: 120,
42-
MaxContentLength: 8192,
42+
MaxContentLength: 10 * 1024 * 1024, // 10MB,
4343
}
4444
}

0 commit comments

Comments
 (0)